Grant Requests
Reject Grant Request
Indicate that you will not process this grant.
Calling this endpoint moves the Grant Request's status to rejected and emits a grant_request.updated webhook event. The Donor Account itself is unaffected; future Grant Requests from the same donor can still be processed.
<Warning> A Grant Request that is already `submitted` or `rejected` cannot be updated. Subsequent calls return status `409 Conflict`. </Warning>post/v1/grant_requests/{id}/reject
Path parameters
idstring required
The unique ID of the Grant Request.
Request body
Example request
{
"reason": "Grant amount exceeds donor's available balance."
}Response
The Grant Request was rejected.
Example response
{
"id": "grant_req_01jpjenf5q6cawy43yxfcrxhct",
"donor_account_id": "donor_account_01jpjenf5q6cawy43yxfcrxhct",
"giving_pool_id": "0bf40881-8ee2-47fb-98ca-f58c7999aa34",
"ein": "12-3456789",
"nonprofit_name": "American Red Cross",
"amount_cents": 10000,
"form_url": "https://example.org/donate",
"created_at": "2026-04-01T09:00:00Z",
"updated_at": "2026-04-01T12:00:00Z"
}