Reservation List Run in API Explorer
Ask AI
API to retrieve all the reservations for given criteria.
POST
/v1/reservations/list
curl \
--request POST 'https://qa-partner.momorooms.com/v1/reservations/list' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"partnerReservationIds":["string"]}'
Request examples
Object-1
{
"partnerReservationIds": [
"string"
]
}
{
"reservationIds": [
42
]
}
{
"checkInStartDate": "2026-05-04",
"checkInEndDate": "2026-05-04"
}
{
"bookingStartDate": "2026-05-04",
"bookingEndDate": "2026-05-04"
}
Response examples (200)
{
"reservations": [
{
"partnerReservationId": "string",
"reservationId": 42,
"bookingStatus": "string"
}
]
}
Response examples (400)
{
"errors": [
{
"errorCode": 42,
"errorDescription": "string"
}
]
}
Response examples (500)
{
"errors": [
{
"errorCode": 42,
"errorDescription": "string"
}
]
}