July 21, 2026

Added new Automations and Executions resources for retrieving automation configurations and their execution history. These resources require a new token to be created with the automation role to your Company Token in the Zylo platform.

Added

Automations

Get Automations

  • An endpoint at /v2/automations to retrieve all automations in your
    Zylo instance. Access requires automations:read permission.

Get Automation by ID

  • An endpoint at /v2/automations/{automationId} to retrieve a single
    automation by its ID.

  • Fields exposed include: name, state, last_status, last_run_time,
    run_count, next_execution_time, category_tags, triggers,
    created_by, modified_by, zylo_created_at, zylo_modified_at.

Executions

Get Executions for an Automation

  • An endpoint at /v2/automations/{automationId}/executions to retrieve
    execution history for a specific automation. Access requires
    automations:read permission.

Get Execution by ID

  • An endpoint at /v2/automations/executions/{executionId} to retrieve
    a single execution by its ID.

  • Fields exposed include: automation_id, automation_name,
    automation_state, category_tags, status, start_time, stop_time,
    error_cause, trigger, messages_queued, messages_sent,
    messages_errored, tickets_created, tickets_errored, created_by,
    zylo_created_at, zylo_modified_at.