Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkJsonObjectW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkJsonObjectW json;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_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}}",
// "overrideInstructions": {
// "dirtyRoom": true
// },
// "updateRoomTypeCharged": true,
// "includeDepartureRooms": true,
// "roomNumberLocked": true
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"criteria.hotelId",L"{{HotelId}}");
CkJsonObjectW_UpdateString(json,L"criteria.reservationIdList[0].id",L"{{ReservationId}}");
CkJsonObjectW_UpdateString(json,L"criteria.reservationIdList[0].type",L"Reservation");
CkJsonObjectW_UpdateString(json,L"criteria.roomId",L"{{RoomId}}");
CkJsonObjectW_UpdateBool(json,L"criteria.overrideInstructions.dirtyRoom",TRUE);
CkJsonObjectW_UpdateBool(json,L"criteria.updateRoomTypeCharged",TRUE);
CkJsonObjectW_UpdateBool(json,L"criteria.includeDepartureRooms",TRUE);
CkJsonObjectW_UpdateBool(json,L"criteria.roomNumberLocked",TRUE);
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
CkHttpW_SetRequestHeader(http,L"x-app-key",L"{{AppKey}}");
CkHttpW_SetRequestHeader(http,L"x-hotelid",L"{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
resp = CkHttpW_PostJson3(http,L"https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments",L"application/json",json);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkJsonObjectW_Dispose(json);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkJsonObjectW_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}}",
"overrideInstructions": {
"dirtyRoom": true
},
"updateRoomTypeCharged": true,
"includeDepartureRooms": true,
"roomNumberLocked": true
}
}'
https://domain.com/fof/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/roomAssignments
Postman Collection Item JSON
{
"name": "07. Pre-Arrival - postRoomAssignment",
"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 \"overrideInstructions\": {\r\n \"dirtyRoom\": true\r\n },\r\n \"updateRoomTypeCharged\": true,\r\n \"includeDepartureRooms\": true,\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": [
]
}