---
title: GetSchedules
source: https://docs.newrelic.com/docs/workflow-automation/workflow-automation-apis/get-schedules
---

Returns information about schedules.

## Input parameters

| Parameter    | Type   | Required | Description      |
| ------------ | ------ | -------- | ---------------- |
| `account.id` | Number | Yes      | Your account ID. |

## Sample request

```graphql
{
  actor {
    account(id: 11933347) {
      workflowAutomation {
        schedules {
          results {
            definition {
              name
              scope {
                id
                type
              }
              version
            }
            schedule {
              id
            }
          }
        }
      }
    }
  }
}
```

## Sample response

The query returns:

-   `schedules.results`: An array of schedule objects, each containing:
    -   `definition.name`: The workflow definition name
    -   `definition.scope.id`: The account ID
    -   `definition.scope.type`: The scope type
    -   `definition.version`: The workflow definition version
    -   `schedule.id`: The unique identifier of the schedule

## Related topics [#related-topics]

[Get schedule](https://docs.newrelic.com/docs/workflow-automation/workflow-automation-apis/get-schedule)

Get detailed information about a specific schedule

[Create schedule](https://docs.newrelic.com/docs/workflow-automation/workflow-automation-apis/create-schedule)

Add a new workflow schedule

[Delete schedule](https://docs.newrelic.com/docs/workflow-automation/workflow-automation-apis/delete-schedule)

Remove a schedule from the list
