IntegrationsPagerdutyActions
List PagerDuty schedules
List schedules for the bound account. Requires read.
schedules.list · PagerDuty · v1
Details
Scopes
read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
schedules | array<object> | Yes | maxItems 100 |
schedules[] | object | Yes | additionalProperties false |
schedules[].id | string | Yes | minLength 1; maxLength 100 |
schedules[].name | string | Yes | minLength 1; maxLength 200 |
schedules[].html_url | string | No | maxLength 2048 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"schedules": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"html_url": {
"type": "string",
"maxLength": 2048
}
},
"required": [
"id",
"name"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"schedules"
]
}