Back to Collection Items
var
http: HCkHttp;
success: Boolean;
json: HCkJsonObject;
resp: HCkHttpResponse;
begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http := CkHttp_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "criteria": {
// "hotelId": "{{HotelId}}",
// "reservationIdList": [
// {
// "id": "{{ReservationId}}",
// "type": "Reservation"
// }
// ],
// "roomId": "{{RoomId}}",
// "updateRoomTypeCharged": false,
// "roomNumberLocked": true
// }
// }
json := CkJsonObject_Create();
CkJsonObject_UpdateString(json,'criteria.hotelId','{{HotelId}}');
CkJsonObject_UpdateString(json,'criteria.reservationIdList[0].id','{{ReservationId}}');
CkJsonObject_UpdateString(json,'criteria.reservationIdList[0].type','Reservation');
CkJsonObject_UpdateString(json,'criteria.roomId','{{RoomId}}');
CkJsonObject_UpdateBool(json,'criteria.updateRoomTypeCharged',False);
CkJsonObject_UpdateBool(json,'criteria.roomNumberLocked',True);
CkHttp_SetRequestHeader(http,'Content-Type','application/json');
CkHttp_SetRequestHeader(http,'x-app-key','{{AppKey}}');
CkHttp_SetRequestHeader(http,'x-hotelid','{{HotelId}}');
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,'<access_token>');
resp := CkHttp_PostJson3(http,'https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments','application/json',json);
if (CkHttp_getLastMethodSuccess(http) = False) then
begin
Memo1.Lines.Add(CkHttp__lastErrorText(http));
Exit;
end;
Memo1.Lines.Add(IntToStr(CkHttpResponse_getStatusCode(resp)));
Memo1.Lines.Add(CkHttpResponse__bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"criteria": {
"hotelId": "{{HotelId}}",
"reservationIdList": [
{
"id": "{{ReservationId}}",
"type": "Reservation"
}
],
"roomId": "{{RoomId}}",
"updateRoomTypeCharged": false,
"roomNumberLocked": true
}
}'
https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments
Postman Collection Item JSON
{
"name": "Add a room number to a reservation",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"type": "text",
"value": "application/json"
},
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"criteria\": {\r\n \"hotelId\": \"{{HotelId}}\",\r\n \"reservationIdList\": [\r\n {\r\n \"id\": \"{{ReservationId}}\",\r\n \"type\": \"Reservation\"\r\n }\r\n ],\r\n \"roomId\": \"{{RoomId}}\",\r\n \"updateRoomTypeCharged\": false,\r\n \"roomNumberLocked\": true\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments",
"host": [
"{{HostName}}"
],
"path": [
"fof",
"v0",
"hotels",
"{{HotelId}}",
"reservations",
"{{ReservationId}}",
"roomAssignments"
]
},
"description": "Use this API to add/assign a room number to a guests reservation. This is required before they can check into the property."
},
"response": [
]
}