Chilkat Online Tools

Foxpro / ORACLE Hospitality OPERA Cloud REST API Workflows / 02. Booking - getProfiles

Back to Collection Items

LOCAL loHttp
LOCAL lnSuccess
LOCAL loQueryParams
LOCAL loResp

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

loHttp = CreateObject('Chilkat_9_5_0.Http')

loQueryParams = CreateObject('Chilkat_9_5_0.JsonObject')
loQueryParams.UpdateString("profileName","Smith")
loQueryParams.UpdateString("givenName","Ann")

loHttp.SetRequestHeader("x-app-key","{{AppKey}}")
loHttp.SetRequestHeader("x-hotelid","{{HotelId}}")
* Adds the "Authorization: Bearer <access_token>" header.
loHttp.AuthToken = "<access_token>"

loResp = loHttp.QuickRequestParams("GET","https://domain.com/crm/v0/profiles",loQueryParams)
IF (loHttp.LastMethodSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loQueryParams
    CANCEL
ENDIF

? STR(loResp.StatusCode)
? loResp.BodyStr
RELEASE loResp

RELEASE loHttp
RELEASE loQueryParams

Curl Command

curl -G -d "profileName=Smith"
	-d "givenName=Ann"
	-H "Authorization: Bearer <access_token>"
	-H "x-app-key: {{AppKey}}"
	-H "x-hotelid: {{HotelId}}"
https://domain.com/crm/v0/profiles

Postman Collection Item JSON

{
  "name": "02. Booking - getProfiles",
  "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}}/crm/v0/profiles?profileName=Smith&givenName=Ann",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "crm",
        "v0",
        "profiles"
      ],
      "query": [
        {
          "key": "profileName",
          "value": "Smith"
        },
        {
          "key": "givenName",
          "value": "Ann"
        },
        {
          "key": "profileType",
          "value": "Guest",
          "disabled": true
        },
        {
          "key": "hotelId",
          "value": "",
          "disabled": true
        },
        {
          "key": "limit",
          "value": "3",
          "disabled": true
        },
        {
          "key": "city",
          "value": "",
          "disabled": true
        },
        {
          "key": "state",
          "value": "",
          "disabled": true
        },
        {
          "key": "postalCode",
          "value": "",
          "disabled": true
        }
      ]
    }
  },
  "response": [
  ]
}