verificationRequests
Create a verification request
Request verification of an unlisted organization. If the organization cannot be found through Chariot's search, you can submit a verification request so that Chariot's compliance team can review and verify the organization.
post/v1/verification_requests
Request body
Example request
{
"ein": "123456789",
"organization_name": "Local Community Foundation",
"website": "https://localfoundation.org",
"recommended_mailing_address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "San Francisco",
"state": "CA",
"zip_code": "94105"
},
"contact_email": "contact@localfoundation.org"
}Response
The verification request was created
Example response
{
"id": "vr_01jpjen1s23s29kkmnjsb6fzga",
"ein": "123456789",
"organization_name": "Local Community Foundation",
"organization_id": "org_01jpjenf5q6cawy43yxfcrxhct",
"status": "needs_review",
"website": "https://localfoundation.org",
"recommended_mailing_address": {
"line1": "123 Main St",
"line2": "Suite 100",
"city": "San Francisco",
"state": "CA",
"zip_code": "94105"
},
"created_at": "2020-01-31T23:00:00Z",
"updated_at": "2020-01-31T23:00:00Z"
}