GET
/
commitments
/
{date_from}
/
{date_to}
/
graph
curl --request GET \
  --url https://api.helpyousponsor.com/v1/commitments/{date_from}/{date_to}/graph \
  --header 'Authorization: Bearer <token>'
{
  "commitment_graph_data": [
    {
      "date": "2023-12-25",
      "total": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

date_from
string
required

The start date for the graph data

date_to
string
required

The end date for the graph data

Response

200 - application/json
Successful operation
commitment_graph_data
object[]