Donor Accounts
Enable Donor Account
Re-enable a previously disabled Donor Account. After this call, the Donor Account can submit new Grant Requests again.
This endpoint is idempotent — calling it on an account that is already enabled returns the Donor Account unchanged.
<Warning> - The Donor Account must be in `approved` status. Calls on a `pending` or `rejected` account return status `409 Conflict`. </Warning>post/v1/donor_accounts/{id}/enable
Path parameters
idstring required
The unique id of the Donor Account.
Response
The Donor Account was enabled (or was already enabled).
Example response
{
"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"
}