Create nonprofit

POST

Create a nonprofit organization.

This is useful for integration partners to use after a nonprofit consents to use the Chariot payment option on their donation forms.

If a nonprofit does not already exist for the EIN, this will return a 201 Created status. If a nonprofit already exists for the given EIN on the system, this will return a 200 OK status.

Handling errors:

  • If the nonprofit does not exist within Chariot’s database, a 404 Not Found status is returned.
  • If the nonprofit exists but does not pass Chariot’s compliance checks, a 412 Precondition Failed status is returned with a reason.

Request

This endpoint expects an object.
userobjectRequired
einstringRequired
The US federal employer identification number (Tax ID); unique on the system
preferredNamestringOptional
The preferred name of the nonprofit organization. This is the name that shows up on the nonprofit's dashboard and Connect modal. This is useful for nonprofits that are known by a different name to donors and don't use their IRS registered name publicly.
picturestringOptional
The URI of the nonprofit's logo
websitestringOptional
The URL of the nonprofit's website

Response

This endpoint returns an object.
idstring
The unique identifier for the object.
namestring
The IRS registered name of the nonprofit organization
einstring
The US federal employer identification number (Tax ID); unique on the system. This value should be exactly 9 digits and should not contain any special characters such as dashes.
preferredNamestringOptional
The preferred name of the nonprofit organization. This is the name that shows up on the nonprofit's dashboard and Connect modal. This is useful for nonprofits that are known by a different name to donors and don't use their IRS registered name publicly.
suborganizationslist of objectsOptional
The list of suborganizations associated with this nonprofit. Suborganizations are useful for nonprofits that have multiple chapters or locations.
addressobjectOptional
picturestringOptional
The URI of the nonprofit's logo
websitestringOptional
The URL of the nonprofit's website
createdAtdatetimeOptional
Time when this object was created. Expressed in ISO 8601 format.
updatedAtdatetimeOptional
Time when this object was last updated. Expressed in ISO 8601 format.
isDafPayNetworkbooleanOptional
A flag to indicate if the nonprofit will receive grants through the DAFPay Network. Grants processing through the DAFPay Network will be sent to the DAFPay Network 501(c)(3) non-profit organization (EIN: 93-1372175). The DAFPay Network will then review and process the grant and send the funds to the nonprofit. Grants processed outside the DAFPay Network will be sent directly to the nonprofit.
inGoodStandingbooleanOptional
A flag to indicate if the nonprofit is in good standing with the IRS. If the nonprofit is a tax-exempt 501(c)(3) Public Charity in good standing with the IRS, this field should be true. This status can change over time and is kept up-to-date by Chariot. Regardless of the value of this field, Connects can still be created for the nonprofit, however the nonprofit will not be able to receive grants through Chariot if this field is false. If you believe the value of this field is incorrect for a Nonprofit, please contact the Chariot team.
claimedbooleanOptional
A flag to indicate if the nonprofit has been claimed by a user. A nonprofit is claimed if a user signs up for a Chariot account with this nonprofit and is verified by the Chariot team.

Errors