Reservation Notification
The reservations_notif call is used for acknowledgement of retrieval of reservations.
Step 1: Request for reservations notification
Step 2: Response for reservations notification
Endpoint
POST

https://connect-sandbox.su-api.com/SUAPI/jservice/Reservation_notif
Step 1: Request for Reservations Notification
Request — HTTP Message Body Model
hotelid / hotel_id / ClientID
string (Required)
Hotel id for which the reservation notification they want to get acknowledged.
Maximum 20 characters allowed.
reservation_notif_id
string (Required)
Reservation notification id for the particular reservation, this is a unique id.
Value - alphanumeric
Sample Request
{
"hotelid": "new1",
"reservation_notif": {
"reservation_notif_id": ["155411226779361384952"]
}
}
Request — Node Overview
The request body consists of a reservations_notif root node. This is the parent node to the required hotelid / hotel_id / ClientID.
The required child node hotelid / hotel_id / ClientID contains the IT provider's hotel id for which the provider wishes to acknowledge success reservation retrieval.
The required child node reservation_notif root node for of reservation ids.
The required child node reservation_notif_id of reservation_notif contains the reservation notification ids for which they want to send acknowledgement.
Step 2: Response for Reservations Notification
Sample Error Response
{
"Status": "Fail",
"Errors": {
"Code": "950",
"ShortText": "Reservation Not Found"
}
}
Sample Success Response
{
"Status":"Success"
}
Last updated
Was this helpful?