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>"
}
]
}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>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response