Chilkat Online Tools

phpExt / ORACLE Hospitality OPERA Cloud REST API Workflows / Get available event statuses

Back to Collection Items

<?php

include("chilkat_9_5_0.php");

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

$http = new CkHttp();

$queryParams = new CkJsonObject();
$queryParams->UpdateString('parameterName','EventStatus');
$queryParams->UpdateString('includeInactiveFlag','false');
$queryParams->UpdateString('parameterValue','TEN');

$http->SetRequestHeader('Content-Type','application/json');
$http->SetRequestHeader('x-app-key','{{AppKey}}');
$http->SetRequestHeader('x-hotelid','{{HotelId}}');
// Adds the "Authorization: Bearer <access_token>" header.
$http->put_AuthToken('<access_token>');

// resp is a CkHttpResponse
$resp = $http->QuickRequestParams('GET','https://domain.com/lov/v1/listOfValues/newEvent/Y/waitList/N/cateringEventStatus',$queryParams);
if ($http->get_LastMethodSuccess() == false) {
    print $http->lastErrorText() . "\n";
    exit;
}

print $resp->get_StatusCode() . "\n";
print $resp->bodyStr() . "\n";


?>

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&parameterValue=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": [
  ]
}