IntegrationsDatadogActions
List Datadog dashboards
List dashboards with start/count pagination via opaque cursor. Requires dashboards_read.
dashboards.list · Datadog · 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 |
dashboards | array<object> | Yes | maxItems 100 |
dashboards[] | object | Yes | additionalProperties false |
dashboards[].id | string | Yes | minLength 1; maxLength 128 |
dashboards[].title | string | Yes | minLength 1; maxLength 500 |
dashboards[].description | string | No | maxLength 4000 |
dashboards[].layout_type | string | No | maxLength 64 |
dashboards[].url | string | No | maxLength 2048 |
dashboards[].created_at | string | No | minLength 1; maxLength 64 |
dashboards[].modified_at | 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": {
"dashboards": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"title": {
"type": "string",
"minLength": 1,
"maxLength": 500
},
"description": {
"type": "string",
"maxLength": 4000
},
"layout_type": {
"type": "string",
"maxLength": 64
},
"url": {
"type": "string",
"maxLength": 2048
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"modified_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id",
"title"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"dashboards"
]
}