IntegrationsSentryActions
List Sentry members
List members in the bound Sentry organization. Requires member:read.
members.list · Sentry · v1
Details
Scopes
None
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 |
members | array<object> | Yes | maxItems 100 |
members[] | object | Yes | additionalProperties false |
members[].id | string | Yes | minLength 1; maxLength 64 |
members[].name | string | Yes | minLength 1; maxLength 200 |
members[].email | string | Yes | minLength 3; maxLength 320 |
members[].role | string | Yes | minLength 1; maxLength 64 |
members[].pending | boolean | Yes | — |
members[].expired | boolean | No | — |
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": {
"members": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"email": {
"type": "string",
"minLength": 3,
"maxLength": 320
},
"role": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"pending": {
"type": "boolean"
},
"expired": {
"type": "boolean"
}
},
"required": [
"id",
"name",
"email",
"role",
"pending"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"members"
]
}