Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/report/health-check \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 316,
"date": "2025-08-31 00:00:00",
"uid": 18620,
"health_score": 44,
"domain": "example.com",
"label": null,
"public": 1,
"version": 2,
"status": "COMPLETE"
}
],
"success": true
}Retrieves a list of publisher health check reports
curl --request GET \
--url https://api.tagdeliver.com/v1/report/health-check \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 316,
"date": "2025-08-31 00:00:00",
"uid": 18620,
"health_score": 44,
"domain": "example.com",
"label": null,
"public": 1,
"version": 2,
"status": "COMPLETE"
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?