Quick Start

The REST API for Oracle Communications Session Delivery Manager (SDM) allows a northbound client application, such as a network service orchestrator (NSO), to interact with SDM.

REST Client Prerequisites

Any application that interacts with the REST API needs to send HTTP requests and receive HTTP responses. The request and response body may be either XML or JSON.

Note:

The REST API resource examples provided in this guide are represented in XML format only.

Note:

If you are using JSON for your REST implementation, the root element should be excluded in the request payload.

For example, the following XML is sent when authenticating:

<?xml version="1.0" encoding="UTF-8"?>
<session>
    <userName>admin</userName>
    <password>passphrase</password>
</session>

If using JSON, the following is incorrect:

{
  "session": {
    "userName": "admin",
    "password": "NextGen"
  }
}

The correct JSON request has the root element removed:

{
  "userName": "admin",
  "password": "NextGen"
}

Step 1: Obtain NNC User Information

Obtain the user name and password credentials from your account administrator to enable you to initiate a session with the REST API through the login URI.

Step 2: Install and Configure the REST Sample Client

The following task shows how to install and configure the REST sample client on which you can view the structure and composition of the REST API in order to help you construct your own REST client.

The following procedure demonstrates how to install cURL on a Windows 64-bit system.
  1. Download the NNC<Version>RESTClient.zip file from the Oracle Delivery Software Cloud to your server by doing the following:

    • Type Oracle Communications Session Delivery Manager in the Product drop-down list.
    • Click the Select Platform drop-down list.
    • In the Select Platform drop-down dialog box, select Acme Packet OS.
    • Continue through the next screens and accept the Oracle license agreements and download the product installation zip file.
  2. Within the product installation zip file, unzip <NNC_VERSION>RESTClient.zip file and open the README.txt file.

  3. Download the Jersey client software to the /lib directory, and unzip the file. Use the README.txt file to verify the Jersey client directory structure on the server.

  4. Run chmod +x * within the bin folder to make bash scripts executable.

  5. Run the ./build.sh to compile source code.
  6. Open and modify the <rest-client> class file to configure REST API calls under the src folder by editing the RESTClientExample, which is a container of all calls to the Oracle Communications Application Orchestrator REST API and uncomment parameters in the main () method to execute different call flows.
  7. Modify XML files in the xml folder.
  8. Configure the individual REST API methods, which are called from the main method.
  9. Run the ./run.sh <rest-client> <server-name>:<port> script to execute the desired REST client within the src folder.