v1

latestOpenAPI 3.0.32026-07-26120117318.1 KB
Automations

List automations

Returns a paginated list of automations for the authenticated project. Automations are ordered by ID (descending). Supports cursor-based pagination via limit and starting_after.

get/automations

Query parameters

limitinteger

Maximum number of automations to return. Min 1, max 100.

starting_afterstring

Cursor for pagination. Pass the id of the last automation from the previous page to fetch the next page.

Response

A paginated list of automations.

object'list' required
urlstring required
has_moreboolean required

Whether more pages are available.

next_cursorstring nullable

Present only when has_more is true. Pass as starting_after for the next page.

Example response

{
  "url": "/v4/automations",
  "data": [
    {
      "id": "auto-abc123",
      "url": "/v4/automations/auto-abc123",
      "name": "Welcome Flow",
      "caption": "Sends a welcome message to new users",
      "status": "active",
      "data": {
        "type": "event",
        "platform": "iOS",
        "initiators": [
          {
            "uid": "2",
            "type": "event"
          }
        ],
        "actions": {
          "push": "nCRUE7SW",
          "screen": "qUY7JXgF"
        },
        "segments": "A0SzRbM2vmmwixbpQxtI"
      }
    }
  ]
}