Chilkat Online Tools

TCL / ORACLE Hospitality OPERA Cloud REST API Workflows / Search For Available Tickets

Back to Collection Items

load ./chilkat.dll

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

set http [new_CkHttp]

set queryParams [new_CkJsonObject]

CkJsonObject_UpdateString $queryParams "includeGroup" "true"
CkJsonObject_UpdateString $queryParams "sellSeparate" "true"
CkJsonObject_UpdateString $queryParams "startDate" "2022-03-16"
CkJsonObject_UpdateString $queryParams "endDate" "2022-03-21"
CkJsonObject_UpdateInt $queryParams "adults" 1
CkJsonObject_UpdateInt $queryParams "children" 0
CkJsonObject_UpdateString $queryParams "fetchInstructions" "Header"
CkJsonObject_UpdateString $queryParams "fetchInstructions" "CalculatedPrice"
CkJsonObject_UpdateString $queryParams "fetchInstructions" "Items"
CkJsonObject_UpdateString $queryParams "ticketPostingRhythm" "true"
CkJsonObject_UpdateString $queryParams "hotelId" "{{HotelId}}"

CkHttp_SetRequestHeader $http "x-app-key" "{{AppKey}}"
CkHttp_SetRequestHeader $http "x-hotelid" "{{HotelId}}"
# Adds the "Authorization: Bearer <access_token>" header.
CkHttp_put_AuthToken $http "<access_token>"

# resp is a CkHttpResponse
set resp [CkHttp_QuickRequestParams $http "GET" "https://domain.com/rtp/v0/packages" $queryParams]
if {[CkHttp_get_LastMethodSuccess $http] == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkJsonObject $queryParams
    exit
}

puts [CkHttpResponse_get_StatusCode $resp]
puts [CkHttpResponse_bodyStr $resp]
delete_CkHttpResponse $resp


delete_CkHttp $http
delete_CkJsonObject $queryParams

Curl Command

curl -G -d "includeGroup=true"
	-d "sellSeparate=true"
	-d "startDate=2022-03-16"
	-d "endDate=2022-03-21"
	-d "adults=1"
	-d "children=0"
	-d "fetchInstructions=Header"
	-d "fetchInstructions=CalculatedPrice"
	-d "fetchInstructions=Items"
	-d "ticketPostingRhythm=true"
	-d "hotelId=%7B%7BHotelId%7D%7D"
	-H "Authorization: Bearer <access_token>"
	-H "x-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
https://domain.com/rtp/v0/packages

Postman Collection Item JSON

{
  "name": "Search For Available Tickets",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "x-hotelid",
        "type": "text",
        "value": "{{HotelId}}"
      },
      {
        "key": "x-app-key",
        "type": "text",
        "value": "{{AppKey}}"
      }
    ],
    "url": {
      "raw": "{{HostName}}/rtp/v0/packages?includeGroup=true&sellSeparate=true&startDate=2022-03-16&endDate=2022-03-21&adults=1&children=0&fetchInstructions=Header&fetchInstructions=CalculatedPrice&fetchInstructions=Items&ticketPostingRhythm=true&hotelId={{HotelId}}",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "rtp",
        "v0",
        "packages"
      ],
      "query": [
        {
          "key": "includeGroup",
          "value": "true"
        },
        {
          "key": "sellSeparate",
          "value": "true"
        },
        {
          "key": "startDate",
          "value": "2022-03-16"
        },
        {
          "key": "endDate",
          "value": "2022-03-21"
        },
        {
          "key": "adults",
          "value": "1"
        },
        {
          "key": "children",
          "value": "0"
        },
        {
          "key": "fetchInstructions",
          "value": "Header"
        },
        {
          "key": "fetchInstructions",
          "value": "CalculatedPrice"
        },
        {
          "key": "fetchInstructions",
          "value": "Items"
        },
        {
          "key": "ticketPostingRhythm",
          "value": "true"
        },
        {
          "key": "hotelId",
          "value": "{{HotelId}}"
        }
      ]
    },
    "description": "Use this operation to search for available packages at a property. You can search by date range, to see what packages are available to add to a reservation for example."
  },
  "response": [
  ]
}