Skip to main content

Create Interfaces Using Client APIs

Note: These APIs are still in alpha, and there might be changes in the implementation in future.

Client APIs available for the API channel will help you build customer-facing interfaces for Hoory AI.

These APIs are useful for cases similar to the ones described below:

  1. Use a custom chat interface instead of the Hoory AI chat widget.
  2. Build conversational interfaces into your mobile apps.
  3. Add Hoory AI to other platforms for which Hoory AI doesn't have an official SDK.

Creating Customer Objects

You can create and retrieve customer data objects using the channel_identifier and customer_identifier.

Channel Identifier

You can obtain the channel_identifier from your API channel -> Settings -> Configuration

Customer Identifier

The customer_identifier or the source_id can be obtained when creating the customer using the create API. You will need to store this identifier on your client-side to make further requests on behalf of the customer. This can be done in cookies, local storage, etc.

Available APIs

Some of the things you can do via the APIs are:

  • Create, View and Update Contact
  • Create and List Conversations
  • Create, List and Update Messages

HMAC Authentication

The Client APIs also support HMAC Authentication. The HMAC token for the Channel can be obtained via running the following on your rails console.

# replace api_channel_id with your channel id
Channel.find(api_channel_id).channel.hmac_token

Connecting to the Hoory AI WebSockets

To receive the real-time updates from the agent dashboard, You can connect to the Hoory AI WebSockets. Hoory AI WebSockets connecting can be made at the following URL.

<your installation url>/cable

Authenticating your WebSocket connection

You will start receiving the events directed towards your customer object after subscribing using the customer pubsub_token. pubsub_token is provided during the customer create API call.

Example

const connection = new WebSocket('ws://localhost:3000/cable');
connection.send(JSON.stringify({ command:"subscribe", identifier: "{\"channel\":\"RoomChannel\",\"pubsub_token\":\""+ customer_pubsub_token+"\"}" }));

Find the full list of events supported by the websockets here.

Implementation

You can find an example chat interface build over the Client APIs over here.