IntegrationsPagerdutyActions
List PagerDuty on-calls
List current on-call entries. Requires read.
oncalls.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 |
oncalls | array<object> | Yes | maxItems 100 |
oncalls[] | object | Yes | additionalProperties false |
oncalls[].user | object | Yes | additionalProperties false |
oncalls[].user.id | string | Yes | minLength 1; maxLength 100 |
oncalls[].user.summary | string | Yes | minLength 1; maxLength 200 |
oncalls[].user.html_url | string | No | maxLength 2048 |
oncalls[].user.type | string | No | maxLength 64 |
oncalls[].schedule | object | No | additionalProperties false |
oncalls[].schedule.id | string | Yes | minLength 1; maxLength 100 |
oncalls[].schedule.summary | string | Yes | minLength 1; maxLength 200 |
oncalls[].schedule.html_url | string | No | maxLength 2048 |
oncalls[].schedule.type | string | No | maxLength 64 |
oncalls[].escalation_policy | object | Yes | additionalProperties false |
oncalls[].escalation_policy.id | string | Yes | minLength 1; maxLength 100 |
oncalls[].escalation_policy.summary | string | Yes | minLength 1; maxLength 200 |
oncalls[].escalation_policy.html_url | string | No | maxLength 2048 |
oncalls[].escalation_policy.type | string | No | maxLength 64 |
oncalls[].escalation_level | integer | Yes | minimum 0; maximum 99 |
oncalls[].start | string | No | minLength 1; maxLength 64 |
oncalls[].end | string | No | minLength 1; 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": {
"oncalls": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"user": {
"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"
]
},
"schedule": {
"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"
]
},
"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"
]
},
"escalation_level": {
"type": "integer",
"minimum": 0,
"maximum": 99
},
"start": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"end": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"user",
"escalation_policy",
"escalation_level"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"oncalls"
]
}