Quick Start

Complete these tasks to set up your environment and use the Oracle Hospitality Cruise Property Management next generation platform to create your first SPMS Solution.

Prerequisites

Prerequisite More Information
Install SPMS SPMS Installation Guide

Task 1: Obtain Account Information

From your account administrator, obtain the appropriate account credentials to enable you to access SPMS functions and resources. Specifically, you will need:
  • User name and password

Task 2: Obtain access token

After you set up your REST client, follow steps in Authenticate section and you will obtain an access token in response.

Task 3: Send a Request

You can send a request to ensure that your connection works. For example, retrieving your user details. You can use the following request.

curl -i -X GET -H "Authorization:Bearer <access-token>" https://<host-name>:<port>/spms/v1/userDetails

If the request is successful, then you should receive a 200 response with a body such as the following:


        {
          "photo": null,
          "crewName": null,
          "position": "Staff Captain",
          "userName": "User Name",
          "userGroup": "ADMIN",
          "userId": 1235
        }
      

Congratulations!