GET
/
admin
/
donor
/
{id}
/
sponsorships
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>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

The id of the donor

Response

200
application/json
Successful operation
entities
object[]
donor
object
hysform
object
sponsorships
object[]
archived
object[]
name
string
emailsets
object[]
years
integer[]
template_errors
string[]