Check waitlist length
GET/v1/partner/locations/:location_id/waitlist-length
Returns the current number of patients on the waitlist for a given location. Returns an array containing a single object with the waitlist length and location ID. Useful for real-time capacity management and patient expectations.
Token scope:{'scope': 'read:locations'}
Request​
Path Parameters
location_id Location Idrequired
Required. The unique identifier of the location
Responses​
- 200
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
location_id Location Id (integer)required
Possible values: Value must match regular expression ^[a-zA-Z0-9]{6}$
The unique identifier of the location
waitlist_length Waitlist Length (integer)required
The number of patients currently on the waitlist
[
{
"location_id": 0,
"waitlist_length": 0
}
]
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
Array [
Array [
- MOD1
- MOD2
]
]
detail
object[]
loc
object[]
required
anyOf
string
integer
msg Message (string)required
type Error Type (string)required
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}
Loading...