curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/commitments/{commitment_id} \
--header 'Authorization: Bearer <token>'
{
"commitment": {},
"the_donor": "<string>",
"dntns": {},
"next": "<string>",
"programs": [
{}
],
"donor_entity": {}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The id of the commitment to get
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/commitments/{commitment_id} \
--header 'Authorization: Bearer <token>'
{
"commitment": {},
"the_donor": "<string>",
"dntns": {},
"next": "<string>",
"programs": [
{}
],
"donor_entity": {}
}