v13

latestOpenAPI 3.0.0raw.githubusercontent.com2026-06-29231692.6 KB
recurring_grants

Get Recurring Grant

Retrieve a recurring grant with a given ID.

get/v1/recurring_grants/{id}

Path parameters

idstring uuid required

The unique id of the recurring grant. The format should be a v4 UUID according to RFC 4122.

Response

OK

idstring uuid required

The unique identifier for the object

trackingIdstring

The tracking ID for the grant

workflowSessionIdstring uuid required

ID of the Connect Workflow Session associated with this grant

fundIdstring required

ID of the donor advised fund

frequency'MONTHLY' required

How often the DAF provider will submit the recurring grant. At the moment, monthly is the only supported frequency.

externalGrantIdstring

ID of the grant associated with the donor advised fund

createdAtstring date-time

Time when this object was created; expressed in RFC 3339 format

updatedAtstring date-time

Time when this object was last updated; expressed in RFC 3339 format

amountnumber required

The grant amount expressed in units of whole cents

firstNamestring

The donor's first name

lastNamestring

The donor's last name

phonestring

The donor's phone number

emailstring

The donor's email

notestring

An note inputted by the user at submisson

Example response

{
  "id": "cfe09e64-6a74-4dab-a565-361185a6f248",
  "trackingId": "L9E182VBGP",
  "workflowSessionId": "2d4b2a43-a5b4-4be1-ad1f-f932016ca4a6",
  "fundId": "daf-id",
  "frequency": "MONTHLY",
  "externalGrantId": "897823sdjf8sfjs",
  "createdAt": "2020-01-31T23:00:00Z",
  "updatedAt": "2020-01-31T23:59:59Z",
  "amount": 15000,
  "firstName": "Warren",
  "lastName": "Buffet",
  "phone": "1237861020",
  "email": "warrenBuffet@example.com",
  "note": "Please dedicate in memory of grandma"
}