Chilkat Online Tools

Objective-C / ORACLE Hospitality OPERA Cloud REST API Workflows / Find all existing Room Maintenance Requests

Back to Collection Items

#import <CkoHttp.h>
#import <CkoJsonObject.h>
#import <CkoHttpResponse.h>

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

CkoHttp *http = [[CkoHttp alloc] init];
BOOL success;

CkoJsonObject *queryParams = [[CkoJsonObject alloc] init];
[queryParams UpdateString: @"roomMaintenanceStatus" value: @"All"];

[http SetRequestHeader: @"x-app-key" value: @"{{AppKey}}"];
[http SetRequestHeader: @"x-hotelid" value: @"{{HotelId}}"];
// Adds the "Authorization: Bearer <access_token>" header.
http.AuthToken = @"<access_token>";

CkoHttpResponse *resp = [http QuickRequestParams: @"GET" url: @"https://domain.com/hsk/v0/hotels/{{HotelId}}/rooms/maintenances" json: queryParams];
if (http.LastMethodSuccess == NO) {
    NSLog(@"%@",http.LastErrorText);
    return;
}

NSLog(@"%d",[resp.StatusCode intValue]);
NSLog(@"%@",resp.BodyStr);

Curl Command

curl -G -d "roomMaintenanceStatus=All"
	-H "Authorization: Bearer <access_token>"
	-H "x-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
https://domain.com/hsk/v0/hotels/{{HotelId}}/rooms/maintenances

Postman Collection Item JSON

{
  "name": "Find all existing Room Maintenance Requests",
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "x-hotelid",
        "value": "{{HotelId}}"
      },
      {
        "key": "x-app-key",
        "value": "{{AppKey}}"
      }
    ],
    "url": {
      "raw": "{{HostName}}/hsk/v0/hotels/{{HotelId}}/rooms/maintenances?roomMaintenanceStatus=All",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "hsk",
        "v0",
        "hotels",
        "{{HotelId}}",
        "rooms",
        "maintenances"
      ],
      "query": [
        {
          "key": "roomMaintenanceStatus",
          "value": "All"
        }
      ]
    }
  },
  "response": [
  ]
}