Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
let queryParams = CkoJsonObject()!
queryParams.update("parameterName", value: "EventStatus")
queryParams.update("includeInactiveFlag", value: "false")
queryParams.update("parameterValue", value: "TEN")
http.setRequestHeader("Content-Type", value: "application/json")
http.setRequestHeader("x-app-key", value: "{{AppKey}}")
http.setRequestHeader("x-hotelid", value: "{{HotelId}}")
// Adds the "Authorization: Bearer <access_token>" header.
http.authToken = "<access_token>"
var resp: CkoHttpResponse? = http.quickRequestParams("GET", url: "https://domain.com/lov/v1/listOfValues/newEvent/Y/waitList/N/cateringEventStatus", json: queryParams)
if http.lastMethodSuccess == false {
print("\(http.lastErrorText!)")
return
}
print("\(resp!.statusCode.intValue)")
print("\(resp!.bodyStr!)")
resp = nil
}
Curl Command
curl -G -d "parameterName=EventStatus"
-d "includeInactiveFlag=false"
-d "parameterValue=TEN"
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-H "x-app-key: {{AppKey}}"
-H "x-hotelid: {{HotelId}}"
https://domain.com/lov/v1/listOfValues/newEvent/Y/waitList/N/cateringEventStatus
Postman Collection Item JSON
{
"name": "Get available event statuses",
"protocolProfileBehavior": {
"disableBodyPruning": true
},
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{Token}}",
"type": "string"
}
]
},
"method": "GET",
"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": "",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{HostName}}/lov/v1/listOfValues/newEvent/Y/waitList/N/cateringEventStatus?parameterName=EventStatus&includeInactiveFlag=false¶meterValue=TEN",
"host": [
"{{HostName}}"
],
"path": [
"lov",
"v1",
"listOfValues",
"newEvent",
"Y",
"waitList",
"N",
"cateringEventStatus"
],
"query": [
{
"key": "parameterName",
"value": "EventStatus"
},
{
"key": "includeInactiveFlag",
"value": "false"
},
{
"key": "parameterValue",
"value": "TEN"
}
]
},
"description": "(to use in postEvent)"
},
"response": [
]
}