Allows a donor to get their information.
curl --request GET \
--url https://api.helpyousponsor.com/v1/frontend/donor/dashboard/details/{client_id}/{program_id}/{session_id} \
--header 'session_id: <api-key>'
{
"client_id": 123,
"program_id": 123,
"session_id": "<string>",
"donor_fields": [
"<string>"
],
"email": "<string>",
"username": "<string>",
"donor_profile": {},
"do_not_email": true,
"disable_program_link": "<string>"
}
Use a session id to authenticate
Client ID associated with the donor
Program ID associated with the donor
Session ID for the donor
Donor information retrieved successfully
The response is of type object
.
curl --request GET \
--url https://api.helpyousponsor.com/v1/frontend/donor/dashboard/details/{client_id}/{program_id}/{session_id} \
--header 'session_id: <api-key>'
{
"client_id": 123,
"program_id": 123,
"session_id": "<string>",
"donor_fields": [
"<string>"
],
"email": "<string>",
"username": "<string>",
"donor_profile": {},
"do_not_email": true,
"disable_program_link": "<string>"
}