Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
HCkHttpResponse resp;
// 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.
// {
// "tickets": [
// {
// "packageCode": "TICKETS1",
// "description": "ticket for ABC Concert",
// "price": "88",
// "quantity": 1
// }
// ],
// "hotelId": "{{HotelId}}"
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"tickets[0].packageCode","TICKETS1");
CkJsonObject_UpdateString(json,"tickets[0].description","ticket for ABC Concert");
CkJsonObject_UpdateString(json,"tickets[0].price","88");
CkJsonObject_UpdateInt(json,"tickets[0].quantity",1);
CkJsonObject_UpdateString(json,"hotelId","{{HotelId}}");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
CkHttp_SetRequestHeader(http,"x-app-key","{{AppKey}}");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
CkHttp_SetRequestHeader(http,"x-hotelId","{{HotelId}}");
resp = CkHttp_PostJson3(http,"https://domain.com/rsv/v0/hotels/{{HotelId}}/reservations/{{ReservationId}}/tickets","application/json",json);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",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 '{
"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": [
]
}