The Only API docs
Automations

Create an automation

Run an action whenever a panel event fires. trigger_event must be a known event type (not ) and action_type must be a supported action. Rate limited to 120 requests/minute.

POST
/automations

Run an action whenever a panel event fires. trigger_event must be a known event type (not *) and action_type must be a supported action. Rate limited to 120 requests/minute.

Guide: Automations

X-API-Key<token>

Your CRM panel API key

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/automations" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "trigger_event": "string",    "action_type": "string"  }'
{  "automation": null,  "success": true}