Connects
Create Connect
Get an existing connect or create a new connect for an existing nonprofit organization.
The returned Connect can be used to integrate the client-side Chariot Connect component using the id property (CID) and also query for data generated from the Chariot Connect instance from the Chariot API using the x-chariot-api-key header parameter.
<Note> Only one Connect object can be created per Nonprofit. If one already exists, this will return a `200 OK` status with the existing object. </Note>post/v1/connects
Query parameters
nonprofitstring uuid required
The unique id of the nonprofit. The format should be a v4 UUID according to RFC 4122.
suborganizationstring uuid
The unique id for the suborganization within the nonprofit. The format should be a v4 UUID according to RFC 4122.
Request body
Response
OK
Example response
{
"id": "test_connect123",
"name": "website",
"apiKey": "test_apiTokenABC",
"active": true,
"createdAt": "2020-01-31T23:00:00Z",
"updatedAt": "2020-01-31T23:59:59Z",
"createdBy": "auth0-user-id-123"
}