Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
-- 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}}"
-- }
-- }
-- ]
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventPrimaryInfo.eventId.type', 'EventId'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventPrimaryInfo.eventId.idContext', 'OPERA'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventPrimaryInfo.eventId.id', '-1'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventPrimaryInfo.hotelId', '{{HotelId}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.eventName.defaultText', 'Breakfast'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.eventType', 'LUNCH'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.eventTimeSpan.startDateTime', '2021-06-23 08:00:00.0'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.eventTimeSpan.endDateTime', '2021-06-23 09:00:00.0'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.eventStatus.status.code', 'INQ'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.attendees.expected', '25'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.attendees.guaranteed', '20'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventDetail.doorcard', 'Summer'
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].eventDetail.notMoveable', 0
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].eventDetail.loudEvent', 1
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].eventDetail.displayDoorcard', 1
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].processInstructions.overrideCapacity', 0
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].processInstructions.overbook', 0
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].processInstructions.overrideMaxgroups', 0
EXEC sp_OAMethod @json, 'UpdateBool', @success OUT, 'eventDetails[0].processInstructions.warnFunctionSpace', 1
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.functionSpaceCode', 'GRAND'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.setupCode', 'RECEP'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.setupTime', '12'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.setdownTime', '12'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.rentalCode', 'CUSTOM'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].functionSpaceInformation.rentalAmount.amount', '400'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventBlockInfo.blockIdList[0].type', 'Block'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventBlockInfo.blockIdList[0].id', '{{BlockId}}'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'eventDetails[0].eventBlockInfo.hotelId', '{{HotelId}}'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-app-key', '{{AppKey}}'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'x-hotelid', '{{HotelId}}'
-- Adds the "Authorization: Bearer <access_token>" header.
EXEC sp_OASetProperty @http, 'AuthToken', '<access_token>'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/evm/v0/events', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
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": [
]
}