Chilkat Online Tools

Android / ORACLE Hospitality OPERA Cloud REST API Workflows / Retrieve reservation details by Id

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

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

    CkHttp http = new CkHttp();
    boolean success;

    CkJsonObject queryParams = new CkJsonObject();
    queryParams.UpdateString("fetchInstructions","Reservation");

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

    CkHttpResponse resp = http.QuickRequestParams("GET","https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}",queryParams);
    if (http.get_LastMethodSuccess() == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, resp.bodyStr());


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -G -d "fetchInstructions=Reservation"
	-H "Authorization: Bearer <access_token>"
	-H "Content-Type: application/json"
	-H "x-hotelid: {{HotelId}}"
	-H "x-app-key: {{AppKey}}"
https://domain.com/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}

Postman Collection Item JSON

{
  "name": "Retrieve reservation details by Id ",
  "protocolProfileBehavior": {
    "disableBodyPruning": true
  },
  "request": {
    "auth": {
      "type": "bearer",
      "bearer": [
        {
          "key": "token",
          "value": "{{Token}}",
          "type": "string"
        }
      ]
    },
    "method": "GET",
    "header": [
      {
        "key": "Content-Type",
        "name": "Content-Type",
        "value": "application/json",
        "type": "text"
      },
      {
        "key": "x-hotelid",
        "value": "{{HotelId}}",
        "type": "text"
      },
      {
        "key": "x-app-key",
        "value": "{{AppKey}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{HostName}}/rsv/v1/hotels/{{HotelId}}/reservations/{{ReservationId}}?fetchInstructions=Reservation",
      "host": [
        "{{HostName}}"
      ],
      "path": [
        "rsv",
        "v1",
        "hotels",
        "{{HotelId}}",
        "reservations",
        "{{ReservationId}}"
      ],
      "query": [
        {
          "key": "fetchInstructions",
          "value": "Reservation"
        },
        {
          "key": "fetchInstructions",
          "value": "GuestMemberships",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "Tickets",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "ProfileAwards",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "ScheduledActivities",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "ServiceRequests",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "ReservationAwards",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "GuestLastStay",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "RevenuesAndBalances",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "Locators",
          "disabled": true
        },
        {
          "key": "fetchInstructions",
          "value": "WebRegistrationCards",
          "disabled": true
        }
      ]
    },
    "description": "To fetch reservation from OPERA using ID"
  },
  "response": [
  ]
}