Work with your REST Client

You can use any programming language or tool that support sending and receiving HTTP messages to test REST APIs, as REST APIs use HTTP methods to send and receive content., So, let's first choose a tool for making HTTP requests.

Considerations for Choosing a REST Client

You can choose among many clients that interact with Oracle B2C Service Chat, such as:

  • A third-party standalone client, such as Postman or Advanced REST Client.
  • Your own custom standalone client. To implement a custom standalone client, see the sample implementation OracleMobileChat.
  • Your connecting application's client.
  • The cURL command-line utility.

With a client you can:

  • Test the username, password, and request URL for your REST API account.
  • Construct and send various types of HTTP requests.

How You Send HTTP Requests Using cURL

In our examples, we use cURL, a popular command-line utility for transferring data using URL syntax, to send requests to REST services. cURL is available in most UNIX, Windows, and Macintosh environments. For details, see Installing the cURL Command-Line Tool on Windows.

The following table describes commonly used cURL options that you can use for REST services.

Option Description

-u

username:password

Specifies the user name and password for server authentication.

-d

Sends the specified data (a JSON request body) to the server. If you begin the data with the at sign (@), it must be followed by the file name to read the data from. For example, -d@example_request_payload.json

-H

Specifies an extra HTTP header in the request. To specify multiple headers, precede each header with the -H option.

Examples:
  • Authorization: Authentication Token
  • Content-Type: Format of Request Body (for example, with POST)
  • Accept: Format of Response Body

-o

<file>

Writes the output to a file instead of to standard output.

-X

Specifies the request method to use when communicating with the HTTP server. The default method is GET.

The following table includes examples of REST operations in Oracle B2C Service Chat using cURL.

Operation cURL Command Example

Use POST to post a chat message to the agent

curl -X POST https://chat_rest_server_domain.com/engagement/api/consumer/day119_181100_sql_238h/v1/postMessage?pool=297:1 -H 'Content-Type: application/json; charset=UTF-8' -H 'SessionId: 192hyto5qomm8r8rpzzmuzsa6' -d '{"body":"Hello I need help with my refund, it has been very long time."}'

Use GET to retrieve the statistics of the engagement queue

curl -X GET https://chat_rest_server_domain.com/engagement/api/consumer/day119_181100_sql_238h/v1/getQueueStats?request=%7B%0D%0A%09%22queueId%22%3A+1%2C%0D%0A%09%22chatProactiveAvailableType%22%3A+%22AGENTS%22%0D%0A%7D -H 'Content-Type: application/json; charset=UTF-8'

How You Send HTTP Requests Using Clients

You can use standalone clients, third-party browser extensions, or add-ons, such as the Advanced REST Client, to send HTTP requests.

The following table includes examples of REST operations in Oracle B2C Service Chat using a client.

Operation Response/Payload Example

POST: Post a message.

Use POST with the following request URI and request body to post a chat message to the agent:

Request URL:

https://chat_rest_server_domain.com/engagement/api/consumer/day119_181100_sql_238h/v1/postMessage?pool=297:1

Request Headers:

  • Content-Type: application/json; charset=UTF-8
  • SessionId: 192hyto5qomm8r8rpzzmuzsa6

Request Body:

{
   "body":"Hello I need help with my refund, it has been very long time."
}
{
    "clientRequestTime": null,
    "serviceStartTime": "2018-10-23T14:00:38.205Z",
    "serviceFinishTime": "2018-10-23T14:00:38.218Z",
    "clientId": 34,
    "clientIdString": "34",
    "clientTransactionId": 0,
    "clientTransactionIdString": "0"
}

GET: Retrieve queue statistics.

Use GET with the following request URI to retrieve engagement queue statistics:

Request URL:

https://chat_rest_server_domain.com/engagement/api/consumer/day119_181100_sql_238h/v1/getQueueStats?request=%7B%0D%0A%09%22queueId%22%3A+1%2C%0D%0A%09%22chatProactiveAvailableType%22%3A+%22AGENTS%22%0D%0A%7D

Request Headers:

  • Content-Type: application/json; charset=UTF-8
{
    "queueId": 1,
    "queueIdString": "1",
    "expectedWaitSeconds": 0,
    "expectedWaitSecondsString": "0",
    "availableAgentSessions": 5,
    "serviceStartTime": "2019-01-30T07:19:14.453Z",
    "serviceFinishTime": "2019-01-30T07:19:14.455Z"
}