curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/commitment/{commitment_id}/donation \
--header 'Authorization: Bearer <token>'
{
"commitment": {},
"details": {
"designation_name": "<string>",
"amount": 123,
"method": "<string>",
"frequency": "<string>",
"currency_symbol": "<string>",
"frequency_total": 123
},
"dntns": {},
"useCC": true,
"donorCardActive": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the commitment
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/commitment/{commitment_id}/donation \
--header 'Authorization: Bearer <token>'
{
"commitment": {},
"details": {
"designation_name": "<string>",
"amount": 123,
"method": "<string>",
"frequency": "<string>",
"currency_symbol": "<string>",
"frequency_total": 123
},
"dntns": {},
"useCC": true,
"donorCardActive": true
}