GET
/
v3
/
dashboards
/
{dashboardId}
/
snapshots
curl --request GET \
  --url https://api4.kinbox.com.br/v3/dashboards/{dashboardId}/snapshots \
  --header 'Authorization: Bearer <token>'
{
  "totalCount": 123,
  "data": [
    {
      "id": "<string>",
      "_id": "<string>",
      "data": {},
      "dashboardId": "<string>",
      "name": "<string>",
      "processedAt": "<string>",
      "processedTimeInMs": 123,
      "totalTimeInMs": 123,
      "error": "<string>",
      "authorId": 123,
      "authorName": "<string>",
      "status": {},
      "workspaceId": 123,
      "createdAt": "2023-11-07T05:31:56Z",
      "lastUpdateAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dashboardId
string
required

Query Parameters

limit
number
default:20
required
Required range: 1 <= x <= 500
offset
number
default:0
required
Required range: x >= 0
name
string

Response

200 - application/json

The response is of type object.