---
title: "List Event Orchestrations"
method: GET
path: "/event_orchestrations"
tags: ["Event Orchestrations"]
---

# List Event Orchestrations

`GET /event_orchestrations`

List all Global Event Orchestrations on an Account.

Global Event Orchestrations allow you define a set of Global Rules and Router Rules, so that when you ingest events using the Orchestration's Routing Key your events will have actions applied via the Global Rules & then routed to the correct Service by the Router Rules, based on the event's content.

For more information see the [API Concepts Document](../../api-reference/a47605517c19a-api-concepts#event-orchestrations)

Scoped OAuth requires: `event_orchestrations.read`

## Query parameters

- `limit` integer
- `offset` integer
- `sort_by` 'name:asc' | 'name:desc' | 'routes:asc' | 'routes:desc' | 'created_at:asc' | 'created_at:desc'

## Headers

- `Accept` string, required
- `Content-Type` 'application/json', required

## Response `200`

A paginated array of Event Orchestration objects.

- object
  - `offset` integer — Echoes offset pagination property.
  - `limit` integer — Echoes limit pagination property.
  - `more` boolean — Indicates if there are additional records to return
  - `total` integer, nullable — The total number of records matching the given query.
  - `orchestrations` object[]
    - `id` string — ID of the Orchestration.
    - `self` string, url — The API show URL at which the object is accessible
    - `name` string — Name of the Orchestration.
    - `description` string — A description of this Orchestration's purpose.
    - `team` object — Reference to the team that owns the Orchestration. If none is specified, only admins have access.
      - `id` string
      - `type` string — A string that determines the schema of the object
      - `self` string, url — The API show URL at which the object is accessible
    - `routes` integer — Number of different Service Orchestration being routed to
    - `created_at` string, date-time — The date the Orchestration was created at.
    - `created_by` object — Reference to the user that has created the Orchestration.
      - `id` string
      - `type` string — A string that determines the schema of the object
      - `self` string, url — The API show URL at which the object is accessible
    - `updated_at` string, date-time — The date the Orchestration was last updated.
    - `updated_by` object — Reference to the user that has updated the Orchestration last.
      - `id` string
      - `type` string — A string that determines the schema of the object
      - `self` string, url — The API show URL at which the object is accessible
    - `version` string — Version of the Orchestration.

## Other responses

- `401` — Caller did not supply credentials or did not provide the correct credentials. If you are using an API key, it may be invalid or your Authorization header may be malformed.
- `403` — Caller is not authorized to view the requested resource. While your authentication is valid, the authenticated user or token does not have permission to perform this action.
- `404` — The requested resource was not found.

---

[API](https://skmtc.net/pagerduty/apis/rest-api.md) · [All operations](https://skmtc.net/pagerduty/apis/rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pagerduty/rest-api/versions/b679a8f3f02c/schema)
