Docs
Search
K
Comment on page

Health

GET /v1/health/destination

Description

Get status for all destinations.

Header Parameters

Param
Type
Required
Description
Authorization
string
yes
Bearer token containing API key

Example Response

{
"0dce7d85-8d61-41db-86bd-af005df755f4":{
"latency_ms":0,
"status":"error",
"message":"Failed to connect",
"last_checked_at":1624548189
},
"3150757e-8b4b-438f-ae2f-a407e976f1eb":{
"latency_ms":294,
"status":"error",
"message":"received non-2xx response (404)",
"last_checked_at":1624569977
}
}

GET /v1/health/destination/{id}

Description

Get status for one destination.

Header Parameters

Param
Type
Required
Description
Authorization
string
yes
Bearer token containing API key

Path Parameters

Param
Type
Required
Description
id
string
yes
ID of the destination to retrieve health info for

Example Response

{
"0dce7d85-8d61-41db-86bd-af005df755f4":{
"latency_ms":0,
"status":"error",
"message":"Failed to connect",
"last_checked_at":1624548189
}
}