Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique report ID
curl --request GET \
--url https://api.tagdeliver.com/v1/report/{id}/data \
--header 'Authorization: Bearer <token>'{
"start": "2023-12-25",
"end": "2023-12-25",
"title": "<string>",
"currency": "<string>",
"table_state": {},
"results": [
{}
],
"timeMs": 123,
"duration": "<string>",
"success": true
}Fetch the data for a given report ID
curl --request GET \
--url https://api.tagdeliver.com/v1/report/{id}/data \
--header 'Authorization: Bearer <token>'{
"start": "2023-12-25",
"end": "2023-12-25",
"title": "<string>",
"currency": "<string>",
"table_state": {},
"results": [
{}
],
"timeMs": 123,
"duration": "<string>",
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Unique report ID
Was this page helpful?