List Donor Accounts
Returns a list of Donor Accounts for the authenticated DAF. This endpoint supports cursor-based pagination as well as filtering by fund, status, and email.
Query parameters
The id of a Giving Pool. When set, filters Donor Accounts to those that have this Giving Pool associated with them.
The status of a Donor Account.
- pending: The Donor Account has been created but the DAF has not yet approved or rejected it.
- approved: The DAF has verified the donor's identity and Grants from this account can be processed.
- rejected: The DAF has rejected the Donor Account. Grants from this account will not be processed.
Filter Donor Accounts to only those with the specified status.
Filter Donor Accounts by donor email. The match is case insensitive and exact.
Filter Donor Accounts by external_id — the DAF's internal identifier for the Donor Account.
the number of results to return; defaults to 10, max is 100
A token to use to retrieve the next page of results. This is useful for paginating over many pages of results. If set, all other arguments are expected to be kept the same as previous calls and the value of this field should be from the next_page_token in the previous response.
Response
The response for DonorAccounts.list
Example response
{
"results": [
{
"id": "donor_account_01jpjenf5q6cawy43yxfcrxhct",
"status": "pending",
"donor": {
"email": "warrenBuffet@example.com",
"first_name": "Warren",
"last_name": "Buffet",
"phone": "+12125550100"
},
"external_id": "ACME-DAF-DONOR-1042",
"approval": {
"approved_at": "2026-04-02T18:30:00Z",
"approved_by": "daf:fid_01jpjenf5q6cawy43yxfcrxhct"
},
"rejection": {
"rejected_at": "2026-04-02T18:30:00Z",
"rejected_by": "daf:fid_01jpjenf5q6cawy43yxfcrxhct",
"rejection_reason": "Donor could not be located in our records."
},
"created_at": "2026-04-01T12:00:00Z",
"updated_at": "2026-04-02T18:30:00Z"
}
]
}