Complete documentation for the AI Conexus REST API. Build powerful automations and integrations.
All API requests require authentication using your API key in the header.
Authorization: Bearer YOUR_API_KEY
| Parameter | Type | Description |
|---|---|---|
| limit | integer | Maximum number of results (default: 20, max: 100) |
| offset | integer | Number of results to skip |
| status | string | Filter by status: active, paused, draft |
{
"data": [
{
"id": "auto_abc123",
"name": "Customer Support Bot",
"status": "active",
"trigger": "webhook",
"created_at": "2026-01-15T10:30:00Z"
}
],
"has_more": true
}
| Parameter | Type | Description |
|---|---|---|
| namerequired | string | Name of the automation |
| triggerrequired | string | Trigger type: webhook, schedule, event |
| actions | array | List of action configurations |
| config | object | Additional configuration options |
{
"name": "Lead Scoring Bot",
"trigger": "webhook",
"actions": ["classify", "score", "notify"],
"config": {
"model": "gpt-4",
"threshold": 0.8
}
}
Retrieves the details of an existing automation.
Updates the specified automation with the provided parameters.
Permanently deletes an automation. This action cannot be undone.
Returns a list of all automation executions with status and results.
Retries a failed execution with the original parameters.
Returns all connected third-party integrations for your account.
Initiates the OAuth flow for connecting a new integration.