Read role-aware mobile field-operations readiness
GET
/v1/mobile/receptionist/readiness
const url = 'https://api.vocapable.com/v1/mobile/receptionist/readiness';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/mobile/receptionist/readiness \ --header 'Authorization: Bearer <token>'Return current checks and their owned repair surfaces, never hidden diagnostics.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
MobileReadiness
The current user’s role-specific field-operations checklist.
object
role
required
Role
string
generated_at
required
Generated At
string format: date-time
items
required
Items
Array<object>
MobileReadinessItemOne no-PII readiness outcome and the surface that owns its next action.
object
key
required
Key
string
state
required
State
string
reason_code
required
Reason Code
string
next_action
required
Next Action
string
destination
required
Destination
string
Example
{ "role": "admin", "items": [ { "key": "carrier_handoff", "state": "ready", "next_action": "native", "destination": "today" } ]}