Skip to content

Read current privacy-minimized integration incidents

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

Return current evidence-backed repair work for Admins and Managers.

This is intentionally not an audit timeline or integration browser. It offers only a finite affected capability, a durable last-known health timestamp, and a named fixed repair surface. No row/resource identifiers, endpoint URLs, credentials, provider diagnostics, delivery payloads, recipient data, or customer content crosses this API.

Successful Response

Media typeapplication/json
MobileIntegrationHealthTimeline

Current evidence-backed integration incidents, newest known health state first.

object
generated_at
required
Generated At
string format: date-time
incidents
required
Incidents
Array<object>
MobileIntegrationHealthIncident

One current, privacy-minimized integration repair item.

last_known_health_at comes from the tenant’s durable integration or delivery state; it is never an invented client-side timestamp. The fixed action/destination pairs are named product repair surfaces, not reflected provider, endpoint, or support URLs.

object
capability
required
Capability
string
Allowed values: google_calendar_connection booking_readiness webhook_delivery
health_status
required
Health Status
string
Allowed values: attention unavailable
last_known_health_at
required
Last Known Health At
string format: date-time
recheck_action
required
Recheck Action
string
Allowed values: browser support
destination
required
Destination
string
Allowed values: calendar webhooks integrations support
Example
{
"incidents": [
{
"capability": "google_calendar_connection",
"health_status": "attention",
"recheck_action": "browser",
"destination": "calendar"
}
]
}