Get booking details by location
GET/v2/partner/bookings
Retrieves bookings associated with a specified location_id and query parameters. Returns an array of booking objects in chronological order by appointment_date, or by created_date if that parameter is supplied.
Token scope:{'scope': 'read:bookings'}
Request​
Query Parameters
Required. The unique indentifier of the location.
Optional. Filter by a single status or multiple statuses separated by commas.
Optional. Filter by a single datetime or a range (format: start_datetime_to_end_datetime, ISO format). Cannot be used with created_date.
Optional. Filter by a single datetime or a range (format: start_datetime_to_end_datetime, ISO format). Cannot be used with appointment_date.
Default value: 20
Optional. Number of bookings to return in the request
Default value: 1
Optional. Page offset of bookings to return in the request (1-indexed)
Responses​
- 200
- 403
- 404
- 422
Successfull operation, Returns an array of booking objects.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
[
{
"address_city": "string",
"address_state": "string",
"address_street": "string",
"address_street_secondary": "string",
"address_zip": "string",
"appointment_date": "string",
"birth_date": "string",
"birth_sex": "string",
"custom_booking_management_url": "string",
"email": "string",
"emr_booking_id": "string",
"emr_department_id": "string",
"emr_patient_id": "string",
"emr_practice_id": "string",
"emr_provider_id": "string",
"first_name": "string",
"gender": "string",
"id": 0,
"is_walk_in": true,
"last_name": "string",
"location_id": 0,
"notes": "string",
"paperwork_status": "string",
"phone": "string",
"reason": "string",
"status": "string"
}
]
Access denied due to insufficient permissions.
Requested resource not found
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}