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