Skip to content

Read privacy-minimized mobile integration health

GET
/v1/mobile/integrations/health
curl --request GET \
--url https://api.vocapable.com/v1/mobile/integrations/health \
--header 'Authorization: Bearer <token>'

Return the finite, repair-oriented registry for Admins and Managers.

Calendar connection/booking reflect only the deployed Google Calendar adapter. CRM is represented explicitly as not shipped rather than guessing from generic webhook rows. Webhook health observes a bounded recent aggregate and never exposes endpoint/delivery identities, URLs, secrets, recipients, raw provider errors, or response data.

Successful Response

Media typeapplication/json
MobileIntegrationHealthRegistry

The complete, safe Integration Health registry for one mobile workspace leader.

object
generated_at
required
Generated At
string format: date-time
items
required
Items
Array<object>
MobileIntegrationHealthItem

One no-PII integration-health outcome and its safe repair surface.

object
key
required
Key
string
Allowed values: google_calendar_connection booking_readiness crm webhook_delivery
status
required
Status
string
Allowed values: healthy attention not_configured not_observed unavailable
reason_code
required
Reason Code
string
Allowed values: calendar_connection_healthy calendar_reconnect_required calendar_not_connected calendar_adapter_unavailable booking_ready booking_calendar_reconnect_required booking_calendar_not_connected booking_unavailable crm_adapter_not_shipped webhook_not_configured webhook_endpoint_disabled webhook_delivery_retrying webhook_delivery_exhausted webhook_delivery_unknown_state webhook_delivery_in_progress webhook_delivery_healthy webhook_delivery_not_observed
action
required
Action
string
Allowed values: none browser support
destination
required
Destination
string
Allowed values: calendar webhooks integrations support
Example
{
"items": [
{
"key": "google_calendar_connection",
"status": "healthy",
"reason_code": "calendar_connection_healthy",
"action": "none",
"destination": "calendar"
}
]
}