VoxLink.ai

API Reference

List automations

List the automations in your account

Updated 27 July 2026

This endpoint lists every automation in your account, with its current status and — for automations attached to an assistant event — the assistant it is attached to.

Response

dataarray

The list of automations

idstring

  The unique ID of the automation. Use it with the other automation endpoints.

namestring

  The display name of the automation

statusstring

  `enabled` (live, reacting to events) or `disabled` (off — a failed test run or an explicit disable)

bindingobject | null

  Present when the automation is attached to one of your assistants' events, otherwise `null`

typestring

      The assistant event this automation reacts to: `post_call`, `inbound`, `conversation` or `conversation_ended`

assistant_idinteger

      The ID of the assistant it is attached to

assistant_namestring

      The name of the assistant it is attached to
{
  "data": [
    {
      "id": "OaeThAHzIjAPTmMJAhgwm",
      "name": "Qualified leads to Google Sheets",
      "status": "enabled",
      "binding": {
        "type": "post_call",
        "assistant_id": 123,
        "assistant_name": "Sales Assistant"
      }
    },
    {
      "id": "nCazgFt1COAmGVgCWkvxY",
      "name": "Daily call report (17:00)",
      "status": "disabled",
      "binding": null
    }
  ]
}

Related guides