Automations
Triggers an automation using webhook data sent via GET request query parameters. Query parameters are extracted using configured JSONPath extractors.
Requires authentication via one of:
- API key headers: X-API-Key, X-User-ID and X-Business-ID
- OAuth2 bearer token: Authorization: Bearer <token>
- An active sessionThe webhook name (must match trigger configuration)
Record email for contact-based automations (query param or body)
Record UUID for record-based automations (query param or body)
Record name for custom object automations (query param or body)
GET /api/automations/{automation_identifier}/webhook/{webhook_name} HTTP/1.1
X-API-KEY: YOUR_API_KEY
X-BUSINESS-ID: YOUR_BUSINESS_ID
X-USER-ID: YOUR_USER_ID
Accept: */*
{
"execution_id": "123e4567-e89b-12d3-a456-426614174000",
"automation_id": "123e4567-e89b-12d3-a456-426614174000"
}Triggers an automation using webhook data sent via POST request. Accepts arbitrary JSON/XML/form data and maps it to automation variables using JSONPath extractors.
Requires authentication via one of:
- API key headers: X-API-Key, X-User-ID and X-Business-ID
- OAuth2 bearer token: Authorization: Bearer <token>
- An active sessionThe webhook name (must match trigger configuration)
Record email for contact-based automations (query param or body)
Record UUID for record-based automations (query param or body)
Record name for custom object automations (query param or body)
Record UUID for record-based automations (fallback if not in query)
Record name for custom object automations (fallback if not in query)
Record email for contact-based automations (fallback if not in query)
Arbitrary webhook payload data
POST /api/automations/{automation_identifier}/webhook/{webhook_name} HTTP/1.1
X-API-KEY: YOUR_API_KEY
X-BUSINESS-ID: YOUR_BUSINESS_ID
X-USER-ID: YOUR_USER_ID
Content-Type: application/json
Accept: */*
Content-Length: 64
{
"user": {
"name": "John",
"email": "john@example.com"
},
"amount": 100
}{
"execution_id": "123e4567-e89b-12d3-a456-426614174000",
"automation_id": "123e4567-e89b-12d3-a456-426614174000"
}Last updated
Was this helpful?