Aggregated queue health across the platform (platform admin)
GET
/admin/health
const url = 'http://localhost:3000/admin/health';const options = {method: 'GET', headers: {'X-Admin-Key': '<X-Admin-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/admin/health \ --header 'X-Admin-Key: <X-Admin-Key>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Fan-out and notify DLQ depths.
Media typeapplication/json
object
fanout
required
object
status
required
string
dlqDepth
required
integer | null
notify
required
object
status
required
string
dlqDepth
required
integer | null
Example
{ "fanout": { "status": "ok" }, "notify": { "status": "ok" }}Authenticated but not permitted.
Media typeapplication/json
object
error
required
object
code
required
string
message
required
string
requestId
required
string
fields
Present only for VALIDATION_FAILED.
Array<object>
object
path
string
message
string
Example
{ "error": { "code": "VALIDATION_FAILED" }}