Skip to content
use-forever Docs
Esc
navigateopen⌘Jpreview

Get integration health

Returns health stats for tenant integration records.

GET/v1/integrations/health
Authorization
AuthorizationBearer token (JWT) · headerrequired
Header parameters
x-workspace-idstringrequired
Workspace context for tenant procedures.
Responses
200Integration health report retrieved.
checkedAtstring<date-time>required
providersIntegrationHealth[]required
Show properties
Array of IntegrationHealth
providerIntegrationProviderrequired
Allowed:TELEGRAMTWILIO
totalRowsintegerrequired
min 0
decryptableRowsintegerrequired
min 0
latestUpdatedAtstring<date-time> | nullrequired
latestDecryptableUpdatedAtstring<date-time> | nullrequired
Request
curl -X GET "https://api.hackathon.space/v1/integrations/health" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "x-workspace-id: string"
Response
{
  "checkedAt": "2024-01-01T00:00:00Z",
  "providers": [
    {
      "provider": "TELEGRAM",
      "totalRows": 0,
      "decryptableRows": 0,
      "latestUpdatedAt": "2024-01-01T00:00:00Z",
      "latestDecryptableUpdatedAt": "2024-01-01T00:00:00Z"
    }
  ]
}