Create Grant
Create and submit a new grant. This should be used to capture a grant intent from an authorized DAFpay workflow session and submit the grant request to the DAF sponsor.
On initial creation of the grant, this request will return a 201 Created status. On subsequent requests, the request will return status 200 OK.
<Warning>
Error handling:
- The grant must be captured within 15 minutes of authorization otherwise the request will return status `410 Gone`.
- If this request is submitted while this grant is already being processed, the request will return status `409 Conflict`.
- The amount must be in whole dollar increments (rounded to the nearest hundred) as currently DAFs only accept whole dollar grants otherwise the request will return status `400 Bad Request`.
- The amount must be greater than or equal to the minimum grant amount for the DAF otherwise the request will return status `400 Bad Request`.
- The amount must be less than or equal to the user's DAF account balance otherwise the request will return status `400 Bad Request`.
- Any inputs exceeding the maximum allowed length will be automatically truncated.
</Warning>
Authentication
AuthorizationBearer
Bearer authentication of the form Bearer <token>, where token is your auth token.
Request
The request to create and submit a grant. This is useful to capture a grant intent associated with DAFpay workflow session.
The request should specify the grant amount. This is the amount submitted for processing by the DAF.
workflowSessionId
The identifier of the donor's DAFpay Workflow Session.
See [Capturing Grant Intents](/guides/dafpay/integrating-dafpay/integration#capturing-grant-intents) for how to get this value from the DAFpay `CHARIOT_SUCCESS` event.
amount
The grant amount in cents that will be processed by Chariot and submitted to the DAF.
This amount must be in whole dollar increments (rounded to the nearest hundred) as currently
all DAFs only accept whole dollar grant amounts.
applicationFeeAmount
This parameter specifies the fee your platform plans to take from the grant in cents.
This is a fee in addition to Chariot's processing fee. With application fees,
Chariot collects the fee you determine from the nonprofit and passes it to your platform.
Please note that platform fees are only taken when the grant is successfully received by the nonprofit.
The sum of Chariot's fee and the applicationFeeAmount cannot exceed 5% of the grant's amount.
If the fee limit is exceeded, a `400 Bad Request` error will be returned.
donor
note
A note the donor wants to send to the nonprofit. Maximum length: 400 characters.
designation
The designation to include on the grant. If this is left blank, "Where needed most" will be used.
Note that including a custom designation may cause the grant approval process to take longer.
Maximum length: 100 characters.
Response
The grant
id
The unique identifier for the object
workflowSessionId
ID of the Connect Workflow Session associated with this grant
fundId
ID of the donor advised fund
amount
The grant amount expressed in units of whole cents
trackingId
The tracking ID for the grant
externalGrantId
ID of the grant associated with the donor advised fund
createdAt
Time when this object was created; expressed in RFC 3339 format
updatedAt
Time when this object was last updated; expressed in RFC 3339 format
status
The status of the grant
feeDetail
The fee detail of the grant
metadata
A map of arbitrary string keys and values to store information about the object
firstName
The donor's first name
lastName
The donor's last name
phone
The donor's phone number
email
The donor's email
note
An note inputted by the user at submisson
statuses
The list of grant statuses for this grant
paymentChannel
The payment channel for the grant. This is useful to know how the grant will be sent. The payment channel will be one of the following:
- dafpay_network: Grant will be sent to the DAFPay Network 501(c)(3) nonprofit organization (EIN: 93-1372175). The DAFPay Network will then review and process the grant and send the funds to the intended recipient.
- direct: Grant will be sent directly to the intended recipient.
address
userFriendlyIdDeprecated
Often referred to as the "Chariot ID", this is the ID that will be included in the payment from the DAF provider.
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
409
Conflict Error
410
Gone Error
500
Internal Server Error

