v1

latestOpenAPI 3.0.02026-08-062903562.2 MB
Organizations
Chariot

Create Chariot integration

Create a new Chariot integration for the specified organization

post/organizations/{organization_id}/chariot-integration

Path parameters

organization_idinteger required
Example:123

The ID of the organization

Request body

einstring

Organization EIN (optional if organization already has EIN)

connect_namestring

Name for the Chariot connect (optional)

webhook_urlstring

Webhook URL for notifications (optional)

Example request

{
  "ein": "12-3456789",
  "connect_name": "My Organization Integration",
  "webhook_url": "https://api.example.com/webhooks/chariot"
}

Response

Chariot integration created successfully

idinteger
organization_idinteger
chariot_organization_idstring
chariot_connect_idstring
activeboolean
metadataobject
created_atstring date-time
updated_atstring date-time

Example response

{
  "id": 1,
  "organization_id": 123,
  "chariot_organization_id": "org_123456",
  "chariot_connect_id": "conn_789012",
  "active": true
}