Skip to main content
POST
/
dashboards
/
data-sources
/
fetch-result
Fetch Query Result
curl --request POST \
  --url https://api.example.com/dashboards/data-sources/fetch-result/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query_job_id": "<string>",
  "page": 123,
  "page_size": 500,
  "sorts": []
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

Api-key
string | null

Body

application/json
query_job_id
string
required
page
integer | null
page_size
integer | null
Required range: 0 < x <= 1000
sorts
DashboardSort · object[]

Response

Successful Response