IntegrationsPagerdutyActions
Get PagerDuty service
Get one service by id. Requires read.
services.get · PagerDuty · v1
Details
Scopes
read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
service_id | string | Yes | minLength 1; maxLength 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 100 |
name | string | Yes | minLength 1; maxLength 200 |
status | string | Yes | minLength 1; maxLength 64 |
html_url | string | Yes | maxLength 2048 |
escalation_policy | object | No | additionalProperties false |
escalation_policy.id | string | Yes | minLength 1; maxLength 100 |
escalation_policy.summary | string | Yes | minLength 1; maxLength 200 |
escalation_policy.html_url | string | No | maxLength 2048 |
escalation_policy.type | string | No | maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"service_id": {
"type": "string",
"minLength": 1,
"maxLength": 100
}
},
"required": [
"service_id"
]
}Output
{
"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"
]
}