IntegrationsDatadogActions
List Datadog team memberships
List memberships for one team. Requires teams_read. Returns bounded membership rows only.
team_memberships.list · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
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 |
memberships | array<object> | Yes | maxItems 100 |
memberships[] | object | Yes | additionalProperties false |
memberships[].id | string | Yes | minLength 1; maxLength 128 |
memberships[].user_id | string | Yes | minLength 1; maxLength 128 |
memberships[].role | string | No | maxLength 64 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"team_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"memberships": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"role": {
"type": "string",
"maxLength": 64
}
},
"required": [
"id",
"user_id"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"memberships"
]
}