Retrieve Dashboards
Allows to retrieve a list of dashboards.
Authorizations
Responses
200
OK
application/json
Responseobject
401
Unauthorized
application/json
403
Forbidden
application/json
get
GET /v2/dashboards HTTP/1.1
Host: api.qubitro.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"action": "get dashboards",
"status": 200,
"message": "Dashboards retrieved successfully.",
"data": {
"dashboards": [
{
"id": "string",
"name": "string"
},
{
"id": "string",
"name": "string"
}
]
}
}
Last updated