Skip to content

Retrieve a reservation

GET
/v1/reservations/{id}
curl --request GET \
--url https://api.useservice.app/v1/reservations/example \
--header 'Authorization: Bearer <token>'
id
required
string

Reservation public id (resv_…)

expand
string

Reservation found

Media type application/json
object
object
required
string
Allowed values: reservation
id
required
string
status
required
string
Allowed values: pending confirmed partially_seated seated late completed cancelled no_show
source
required
string
Allowed values: manual widget phone walk_in import
booking_channel
required
string
Allowed values: back_office website_widget phone walk_in google_reserve
party_size
required
integer
actual_party_size
integer
nullable
service_date
required
string format: date
starts_at
required
string format: date-time
ends_at
string format: date-time
nullable
guest_notes
string
nullable
internal_notes
string
nullable
guest
Any of:
string
tables
required
Array<object>
object
object
required
string
Allowed values: table
id
required
string
name
required
string
min_capacity
required
integer
nullable
max_capacity
required
integer
nullable
section
required
object
object
required
string
Allowed values: section
id
required
string
name
required
string
area_type
required
string
Allowed values: indoor outdoor terrace bar lounge private_room patio rooftop
created_at
required
string format: date-time
updated_at
required
string format: date-time
Example
{
"object": "reservation",
"status": "pending",
"source": "manual",
"booking_channel": "back_office",
"guest": {
"object": "guest",
"language": "fr",
"source": "manual"
},
"tables": [
{
"object": "table",
"section": {
"object": "section",
"area_type": "indoor"
}
}
]
}
Service-Version
string

Dated API version applied to this response

No such reservation

Media type application/json
object
error
required
object
type
required
string
Allowed values: invalid_request_error authentication_error rate_limit_error api_error
code
required
string
message
required
string
param
string
nullable
doc_url
string
nullable
Example
{
"error": {
"type": "invalid_request_error"
}
}