IntegrationsPagerdutyActions
List PagerDuty services
List services for the bound account. Requires read.
services.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 |
services | array<object> | Yes | maxItems 100 |
services[] | object | Yes | additionalProperties false |
services[].id | string | Yes | minLength 1; maxLength 100 |
services[].name | string | Yes | minLength 1; maxLength 200 |
services[].status | string | Yes | minLength 1; maxLength 64 |
services[].html_url | string | Yes | maxLength 2048 |
services[].escalation_policy | object | No | additionalProperties false |
services[].escalation_policy.id | string | Yes | minLength 1; maxLength 100 |
services[].escalation_policy.summary | string | Yes | minLength 1; maxLength 200 |
services[].escalation_policy.html_url | string | No | maxLength 2048 |
services[].escalation_policy.type | string | No | maxLength 64 |
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": {
"services": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"html_url": {
"type": "string",
"maxLength": 2048
},
"escalation_policy": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"summary": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"html_url": {
"type": "string",
"maxLength": 2048
},
"type": {
"type": "string",
"maxLength": 64
}
},
"required": [
"id",
"summary"
]
}
},
"required": [
"id",
"name",
"status",
"html_url"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"services"
]
}