Returns sponsorships data
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/donor/{id}/sponsorships \
--header 'Authorization: Bearer <token>'
{
"entities": [
{}
],
"donor": {},
"hysform": {},
"sponsorships": [
{}
],
"archived": [
{}
],
"name": "<string>",
"emailsets": [
{}
],
"years": [
123
],
"template_errors": [
"<string>"
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The id of the donor
Successful operation
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/admin/donor/{id}/sponsorships \
--header 'Authorization: Bearer <token>'
{
"entities": [
{}
],
"donor": {},
"hysform": {},
"sponsorships": [
{}
],
"archived": [
{}
],
"name": "<string>",
"emailsets": [
{}
],
"years": [
123
],
"template_errors": [
"<string>"
]
}