curl --request GET \
--url https://server.stage.overflow.co/api/v3/donors/{donorId} \
--header 'x-client-id: <api-key>'{
"data": {
"id": "6710f34fd5061afeec3eab57",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"phone": "+1234567890",
"address": {
"line1": "123 Main St",
"line2": "Apt 1",
"city": "Anytown",
"state": "CA",
"zip": "12345"
},
"activeRecurringCount": 1,
"latestContributionDate": "2025-01-01T00:00:00.000",
"totalContributionsCount": 10
}
}Returns donor for given ID.
curl --request GET \
--url https://server.stage.overflow.co/api/v3/donors/{donorId} \
--header 'x-client-id: <api-key>'{
"data": {
"id": "6710f34fd5061afeec3eab57",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"firstName": "John",
"lastName": "Doe",
"email": "[email protected]",
"phone": "+1234567890",
"address": {
"line1": "123 Main St",
"line2": "Apt 1",
"city": "Anytown",
"state": "CA",
"zip": "12345"
},
"activeRecurringCount": 1,
"latestContributionDate": "2025-01-01T00:00:00.000",
"totalContributionsCount": 10
}
}Client ID for API authentication
The ID of the donor to fetch.
"2ea1ae03ca521e437db76d76"
The donor for the given ID
Show child attributes
Donor Id
"6710f34fd5061afeec3eab57"
Donor created at
"2025-01-01T00:00:00.000Z"
Donor updated at
"2025-01-01T00:00:00.000Z"
Donor first name
"John"
Donor last name
"Doe"
Donor email
Donor phone number in E.164 format
"+1234567890"
Donor address
Show child attributes
{
"line1": "123 Main St",
"line2": "Apt 1",
"city": "Anytown",
"state": "CA",
"zip": "12345"
}The number of active recurring donations
1
The date of the latest contribution
"2025-01-01T00:00:00.000"
Total number of contributions made by the donor
10
Was this page helpful?