IntegrationsDatadogActions
Get Datadog user
Get one user by id. Requires user_access_read.
users.get · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
user_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 128 |
name | string | Yes | minLength 1; maxLength 200 |
email | string | Yes | minLength 3; maxLength 320 |
status | string | Yes | minLength 1; maxLength 64 |
service_account | boolean | Yes | — |
verified | boolean | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"user_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"user_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"email": {
"type": "string",
"minLength": 3,
"maxLength": 320
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"service_account": {
"type": "boolean"
},
"verified": {
"type": "boolean"
}
},
"required": [
"id",
"name",
"email",
"status",
"service_account"
]
}