GET
/
admin
/
donors
/
{donor_id}
/
donations
curl --request GET \
  --url https://api.helpyousponsor.com/v1/admin/donors/{donor_id}/donations \
  --header 'Authorization: Bearer <token>'
{
  "donations": [
    {}
  ],
  "sponsorships": [
    {}
  ],
  "funding_entities": [
    {}
  ],
  "donor": {},
  "hysform": {},
  "designations": [
    {}
  ],
  "commitments": [
    {}
  ],
  "useCC": true,
  "donorCardActive": true,
  "anyDonorCardActive": true,
  "name": "<string>",
  "dntns": {},
  "emailsets": [
    {}
  ],
  "years": [
    {}
  ],
  "template_errors": [
    {}
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

donor_id
integer
required

The ID of the donor

Response

200
application/json
Successful operation
donations
object[]
sponsorships
object[]
funding_entities
object[]
donor
object
hysform
object
designations
object[]
commitments
object[]
useCC
boolean
donorCardActive
boolean
anyDonorCardActive
boolean
name
string
dntns
object
emailsets
object[]
years
object[]
template_errors
object[]