Hotel Checkout

Perform checkout for hotel guests.

Note: After checking out through this interface, PBX will do the following operations for the hotel extension:
  • Empty the extension's voicemail box.
  • Delete the extension's outbound route permissions.
  • Delete the extension's alarm.
  • Reset the extension's Last Name, First Name, Email Address, Mobile Number, User Password, and Presence.

Request URL

POST {base_url}/{api_path}/hotel/checkout?access_token={access_token}

Request parameters

Table 1.
Parameter Required Type Description
ext_id Yes Integer The unique ID of an extension.
Note: You can query extension's ID using Search Specific Extensions.

Response parameters

Table 2.
Parameter Type Description
errcode Integer Returned error code.
  • 0: Succeed.
  • Non-zero value: Failed.
Note: You can check the error code and error message in Error Code and Error Message.
errmsg String Returned message.
  • SUCCESS: Succeed.
  • FAILURE: Failed.

Examples

Request example

POST /openapi/v1.0/hotel/checkout?access_token=ojPrvnfzPdwc8OCcRmhG16gEHuZcwFco HTTP/1.1
Host: 192.168.5.150:8088
Content-Type: application/json
{
    "ext_id":39
}

Response example

HTTP/1.1 200 OK
{
    "errcode": 0,
    "errmsg": "SUCCESS"
}