latestOpenAPI 3.0.02026-08-137192110.1 KB

75294f591cc2

Orchestrations

List Orchestrations

List all Orchestrations in pages, sorted by name in alphabetical order.

get/orchestrations

Query parameters

starting_afterstring
Example:ewK8sDoLNI4CFR

The cursor to use in pagination. Use the value of the next_cursor field from the response of a previous list request.

limitinteger

The number of items to return in a single page.

Response

has_moreboolean required

Indicates whether there are more items to be fetched in the subsequent pages.

next_cursorstring

The cursor to use in pagination. Use this value as starting_after to get the next page.

Example response

{
  "has_more": true,
  "next_cursor": "VeN1GjhVIq1D9h",
  "data": [
    {
      "id": "ewK8sDoLNI4CFR",
      "name": "My Orchestration",
      "cron_expression": "0 0 * * *",
      "description": "Daily sync of all marketing data.",
      "active": true
    }
  ]
}