GET
/
donor
/
{id}
curl --request GET \
  --url https://api.helpyousponsor.com/v1/donor/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "data": {
    "status": "Active",
    "profile": {
      "field_key": "field_value"
    },
    "fields": [
      {}
    ],
    "donor": {},
    "hysform": {},
    "profilePic": "",
    "name": "John Doe",
    "details": {},
    "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

ID of the donor to be fetched

Response

200
application/json
Successful operation
status
string
Example:

"success"

data
object