Livechat chatbot and app integration (backend)
The omnidesk chat service is well suited to be integrated with your own app or chatbot. You can use our API to push the chatbot history and provide a way to escalate. These docs can also be used to integrate our chat with your mobile apps (android/iphone).
Session management
Because you are building an app or chatbot you probably already have a unique session ID of your current session. Our service requires that you provide a unique chat session id. You are in control of the session.
Escalate a chat from chatbot to a live person
You can use our API call notifyUserNewChatMessage to create a new chat session and you can also use this same endpoint to post new messages. This is supposed to be used at your backend / middleware.
Example of a new escalation (and creation of a ticket consequently):
New chat message from the customer to the agent
POST
https://account.omnidesk.com/api/v2/chat/notifyUserNewChatMessage
This endpoint can be used to send new messages from the customer to the agent. For the first message it will create a new session. Be sure to provide a unique chatSessionID that will remain the same for the entire session.
Path Parameters
All consequent messages should also be posted to this endpoint. Provide the same sessionID so that it will go to the same ticket and support agent, if not it will create a new ticket.
Handle agent response
The response of the chat agent will be posted to the chatServer hookpoint. The response will be posted to {{ chatServer }}/ messageForCustomer, see below.
New message from the agent to the customer (hookpoint)
POST
{{ chatServer }}/messageForCustomer
This hookpoint will receive responses from the agent to the customer
Path Parameters
File upload from the customer to the agent
POST
https://account.omnidesk.com/api/v2/chat/addAttachment
Use this endpoint to upload an attachment from the customer to the agent.
Request Body
File upload from the agent to the customer (hookpoint)
POST
{{ chatserver }}/uploadForCustomer
This hookpoint will receive attachments from the agent to the customer.
Path Parameters
Typing indicator and other events for the customer
POST
https://account.omnidesk.com/api/v2/chat/notifyUserNewChatEvent
Request Body
Typing indicator for customer (hookpoint)
POST
{{ chatserver}}/typingIndicatorForCustomer
This hookpoint will receive an indication when the agent is typing or not.
Path Parameters
End the session (timeout or other trigger)
POST
https://account.omnidesk.com/api/v2/message/notifyUserEndChat
As mentioned above your software is in control of the session. With this endpoint you can let Omnidesk know the session ended.
Path Parameters
Request if agents available with the si
GET
https://chat.omnidesk.io/requestChatConfig
First make sure the option "Hide chat when there are no agents available" is checked at your chat token configuration (Settings > Channels > Live chat > Tokens) and click the update-button. When there are no agents available there will be an instruction in the response of requestChatConfig that contains: "type": "hide_reason_no_agents_available". See a full example of such a response at the Response tab below (look for the key "instructions"). When there are agents available this instruction will not be in the response (there is not a instruction that states that there ARE agents available).
Path Parameters
Create chatbot log
POST
https://account.omnidesk.com/api/v2/message/chatbot
This endpoint can be used to push the chatbot history to Omnidesk.
Request Body
Push end session
POST
{{ chatserver}}/endSession
Stops the chat as of the agent clicked on the stop button in the ticket interface
Path Parameters
Last updated