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.
// {
// "tickets": [
// {
// "packageCode": "TICKETS1",
// "description": "ticket for ABC Concert",
// "price": "88",
// "quantity": 1
// }
// ],
// "hotelId": "{{HotelId}}"
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"tickets[0].packageCode",L"TICKETS1");
CkJsonObjectW_UpdateString(json,L"tickets[0].description",L"ticket for ABC Concert");
CkJsonObjectW_UpdateString(json,L"tickets[0].price",L"88");
CkJsonObjectW_UpdateInt(json,L"tickets[0].quantity",1);
CkJsonObjectW_UpdateString(json,L"hotelId",L"{{HotelId}}");
CkHttpW_SetRequestHeader(http,L"Content-Type",L"application/json");
CkHttpW_SetRequestHeader(http,L"x-app-key",L"{{AppKey}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttpW_putAuthToken(http,L"<access_token>");
CkHttpW_SetRequestHeader(http,L"x-hotelId",L"{{HotelId}}");
resp = CkHttpW_PostJson3(http,L"https://domain.com/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/tickets",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 '{
"tickets": [
{
"packageCode": "TICKETS1",
"description": "ticket for ABC Concert",
"price": "88",
"quantity": 1
}
],
"hotelId": "{{HotelId}}"
}'
https://domain.com/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/tickets
Postman Collection Item JSON
{
"name": "Add Tickets To 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 \"tickets\": [\r\n {\r\n \"packageCode\": \"TICKETS1\",\r\n \"description\": \"ticket for ABC Concert\",\r\n \"price\": \"88\",\r\n \"quantity\": 1\r\n }\r\n ],\r\n \"hotelId\": \"{{HotelId}}\"\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/tickets",
"host": [
"{{HostName}}"
],
"path": [
"rsv",
"v0",
"hotels",
"{{HotelId}}",
"reservations",
"{{ReservationId}}",
"tickets"
]
},
"description": "To first find available tickets to sell to a guest, use the operations\r\n- getPackages in Rate module\r\n- get Reservation Packages Group Items LOV (in ListOfValues module)."
},
"response": [
]
}