Read an authorized appointment detail
GET
/v1/mobile/receptionist/activity/appointments/{appointment_id}
const url = 'https://api.vocapable.com/v1/mobile/receptionist/activity/appointments/example';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/activity/appointments/example \ --header 'Authorization: Bearer <token>'Read by opaque activity id, with the repository’s tenant predicate in every query.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”appointment_id
required
Appointment Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
MobileAppointment
A mobile appointment receipt without contact, attendee, or provider identifiers.
object
id
required
Id
string
call_id
required
Call Id
string
starts_at
required
Starts At
string format: date-time
ends_at
required
Ends At
string format: date-time
status
required
Status
string
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
Example
{ "status": "booked"}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}