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.
// {
// "eventDetails": [
// {
// "eventPrimaryInfo": {
// "eventId": {
// "type": "EventId",
// "idContext": "OPERA",
// "id": "-1"
// },
// "hotelId": "{{HotelId}}"
// },
// "eventDetail": {
// "eventName": {
// "defaultText": "Breakfast"
// },
// "eventType": "LUNCH",
// "eventTimeSpan": {
// "startDateTime": "2021-06-23 08:00:00.0",
// "endDateTime": "2021-06-23 09:00:00.0"
// },
// "eventStatus": {
// "status": {
// "code": "INQ"
// }
// },
// "attendees": {
// "expected": "25",
// "guaranteed": "20"
// },
// "doorcard": "Summer",
// "notMoveable": false,
// "loudEvent": true,
// "displayDoorcard": true
// },
// "processInstructions": {
// "overrideCapacity": false,
// "overbook": false,
// "overrideMaxgroups": false,
// "warnFunctionSpace": true
// },
// "functionSpaceInformation": {
// "functionSpaceCode": "GRAND",
// "setupCode": "RECEP",
// "setupTime": "12",
// "setdownTime": "12",
// "rentalCode": "CUSTOM",
// "rentalAmount": {
// "amount": "400"
// }
// },
// "eventBlockInfo": {
// "blockIdList": [
// {
// "type": "Block",
// "id": "{{BlockId}}"
// }
// ],
// "hotelId": "{{HotelId}}"
// }
// }
// ]
// }
json = CkJsonObjectW_Create();
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventPrimaryInfo.eventId.type",L"EventId");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventPrimaryInfo.eventId.idContext",L"OPERA");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventPrimaryInfo.eventId.id",L"-1");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventPrimaryInfo.hotelId",L"{{HotelId}}");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.eventName.defaultText",L"Breakfast");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.eventType",L"LUNCH");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.eventTimeSpan.startDateTime",L"2021-06-23 08:00:00.0");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.eventTimeSpan.endDateTime",L"2021-06-23 09:00:00.0");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.eventStatus.status.code",L"INQ");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.attendees.expected",L"25");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.attendees.guaranteed",L"20");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventDetail.doorcard",L"Summer");
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].eventDetail.notMoveable",FALSE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].eventDetail.loudEvent",TRUE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].eventDetail.displayDoorcard",TRUE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].processInstructions.overrideCapacity",FALSE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].processInstructions.overbook",FALSE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].processInstructions.overrideMaxgroups",FALSE);
CkJsonObjectW_UpdateBool(json,L"eventDetails[0].processInstructions.warnFunctionSpace",TRUE);
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.functionSpaceCode",L"GRAND");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.setupCode",L"RECEP");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.setupTime",L"12");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.setdownTime",L"12");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.rentalCode",L"CUSTOM");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].functionSpaceInformation.rentalAmount.amount",L"400");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventBlockInfo.blockIdList[0].type",L"Block");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventBlockInfo.blockIdList[0].id",L"{{BlockId}}");
CkJsonObjectW_UpdateString(json,L"eventDetails[0].eventBlockInfo.hotelId",L"{{HotelId}}");
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/evm/v0/events",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 "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
-d '{
"eventDetails": [
{
"eventPrimaryInfo": {
"eventId": {
"type": "EventId",
"idContext": "OPERA",
"id": "-1"
},
"hotelId": "{{HotelId}}"
},
"eventDetail": {
"eventName": {
"defaultText": "Breakfast"
},
"eventType": "LUNCH",
"eventTimeSpan": {
"startDateTime": "2021-06-23 08:00:00.0",
"endDateTime": "2021-06-23 09:00:00.0"
},
"eventStatus": {
"status": {
"code": "INQ"
}
},
"attendees": {
"expected": "25",
"guaranteed": "20"
},
"doorcard": "Summer",
"notMoveable": false,
"loudEvent": true,
"displayDoorcard": true
},
"processInstructions": {
"overrideCapacity": false,
"overbook": false,
"overrideMaxgroups": false,
"warnFunctionSpace": true
},
"functionSpaceInformation": {
"functionSpaceCode": "GRAND",
"setupCode": "RECEP",
"setupTime": "12",
"setdownTime": "12",
"rentalCode": "CUSTOM",
"rentalAmount": {
"amount": "400"
}
},
"eventBlockInfo": {
"blockIdList": [
{
"type": "Block",
"id": "{{BlockId}}"
}
],
"hotelId": "{{HotelId}}"
}
}
]
}'
https://domain.com/evm/v0/events
Postman Collection Item JSON
{
"name": "Create a new event with function space & rental amount",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var data = pm.response.headers.get(\"Location\").split(\"/\").pop();\r",
"postman.setEnvironmentVariable(\"EventId\", data);"
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
{
"key": "x-app-key",
"type": "text",
"value": "{{AppKey}}"
},
{
"key": "x-hotelid",
"type": "text",
"value": "{{HotelId}}"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"eventDetails\": [\r\n {\r\n \"eventPrimaryInfo\": {\r\n \"eventId\": {\r\n \"type\": \"EventId\",\r\n \"idContext\": \"OPERA\",\r\n \"id\": \"-1\"\r\n },\r\n \"hotelId\": \"{{HotelId}}\"\r\n },\r\n \"eventDetail\": {\r\n \"eventName\": {\r\n \"defaultText\": \"Breakfast\"\r\n },\r\n \"eventType\": \"LUNCH\",\r\n \"eventTimeSpan\": {\r\n \"startDateTime\": \"2021-06-23 08:00:00.0\",\r\n \"endDateTime\": \"2021-06-23 09:00:00.0\"\r\n },\r\n \"eventStatus\": {\r\n \"status\": {\r\n \"code\": \"INQ\"\r\n }\r\n },\r\n \"attendees\": {\r\n \"expected\": \"25\",\r\n \"guaranteed\": \"20\"\r\n },\r\n \"doorcard\": \"Summer\",\r\n \"notMoveable\": false,\r\n \"loudEvent\": true,\r\n \"displayDoorcard\": true\r\n },\r\n \"processInstructions\": {\r\n \"overrideCapacity\": false,\r\n \"overbook\": false,\r\n \"overrideMaxgroups\": false,\r\n \"warnFunctionSpace\": true\r\n },\r\n \"functionSpaceInformation\": {\r\n \"functionSpaceCode\": \"GRAND\",\r\n \"setupCode\": \"RECEP\",\r\n \"setupTime\": \"12\",\r\n \"setdownTime\": \"12\",\r\n \"rentalCode\": \"CUSTOM\",\r\n \"rentalAmount\": {\r\n \"amount\": \"400\"\r\n }\r\n },\r\n \"eventBlockInfo\": {\r\n \"blockIdList\": [\r\n {\r\n \"type\": \"Block\",\r\n \"id\": \"{{BlockId}}\"\r\n }\r\n ],\r\n \"hotelId\": \"{{HotelId}}\"\r\n }\r\n }\r\n ]\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/evm/v0/events",
"host": [
"{{HostName}}"
],
"path": [
"evm",
"v0",
"events"
]
}
},
"response": [
]
}