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.
// {
// "reservation": {
// "reservationId": {
// "type": "Reservation"
// },
// "preCheckInDetails": {
// "arrival": {
// "arrivalTime": "2021-03-23T13:00:00"
// }
// }
// }
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"reservation.reservationId.type",L"Reservation");
CkJsonObjectW_UpdateString(json,L"reservation.preCheckInDetails.arrival.arrivalTime",L"2021-03-23T13:00:00");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
CkHttpW_SetRequestHeader(http,L"x-hotelid",L"{{HotelId}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
CkHttpW_SetRequestHeader(http,L"x-app-key",L"{{AppKey}}");
resp = CkHttpW_PostJson3(http,L"https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}/preCheckIn",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-hotelid: {{HotelId}}"
-H "x-app-key: {{AppKey}}"
-d '{
"reservation": {
"reservationId": {
"type": "Reservation"
},
"preCheckInDetails": {
"arrival": {
"arrivalTime": "2021-03-23T13:00:00"
}
}
}
}'
https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}/preCheckIn
Postman Collection Item JSON
{
"name": "08. Pre-Arrival - postPreCheckInReservation (update arrival time)",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
},
{
"key": "x-hotelid",
"value": "{{HotelId}}",
"type": "text"
},
{
"key": "x-app-key",
"value": "{{AppKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"reservation\": {\r\n \"reservationId\": {\r\n \"type\": \"Reservation\"\r\n },\r\n \"preCheckInDetails\": {\r\n \"arrival\": {\r\n \"arrivalTime\": \"2021-03-23T13:00:00\"\r\n }\r\n }\r\n }\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}/preCheckIn",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"v1",
"hotels",
"{{HotelId}}",
"reservations",
"{{ReservationId}}",
"preCheckIn"
]
},
"description": "To preregister reservaiton in OPERA"
},
"response": [
]
}