Chilkat Online Tools

Perl / ORACLE Hospitality OPERA Cloud REST API Workflows / Get Rate Categories for a property

Back to Collection Items

use chilkat();

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

$http = chilkat::CkHttp->new();

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

$sbResponseBody = chilkat::CkStringBuilder->new();
$success = $http->QuickGetSb("https://domain.com/lov/v1/listOfValues/hotels/{{HotelId}}/rateCategories",$sbResponseBody);
if ($success == 0) {
    print $http->lastErrorText() . "\r\n";
    exit;
}

print "Response status code = " . $http->get_LastStatus() . "\r\n";
print $sbResponseBody->getAsString() . "\r\n";

Curl Command

curl -X GET
	-H "Authorization: Bearer <access_token>"
	-H "x-app-key: {{AppKey}}"
	-H "x-hotelid: {{HotelId}}"
https://domain.com/lov/v1/listOfValues/hotels/{{HotelId}}/rateCategories

Postman Collection Item JSON

{
  "name": "Get Rate Categories for a property",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "x-app-key",
        "type": "text",
        "value": "{{AppKey}}"
      },
      {
        "key": "x-hotelid",
        "type": "text",
        "value": "{{HotelId}}"
      }
    ],
    "url": {
      "raw": "{{HostName}}/lov/v1/listOfValues/hotels/{{HotelId}}/rateCategories",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "lov",
        "v1",
        "listOfValues",
        "hotels",
        "{{HotelId}}",
        "rateCategories"
      ]
    }
  },
  "response": [
  ]
}