Skip to main content

Live Chat Integration on app.yellow.ai

This integration will allow the customers who are using bots on app.yellow.ai to use the updated live chat integration on cloud.yellow.ai.

1. Use cases

The following are the use-cases of this integration:

1.1 Amazon connect live agent

To connect with an Amazon Connect Live Agent, use this code-snippet


app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
amazonConnectLiveAgentCustomFields: {customFields: {test: “yes”}}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.
amazonConnectLiveAgentCustomFields{customFields: {test: “yes”}}ObjectCustom key: value pairs associated with the end user required to raise a ticket. You need to pass the value of this key as , in case no key: pairs are required.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the amazon connect create ticket API

Sample response in case of failure


{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the amazon connect create ticket API

1.2 Avaya Live Agent

To connect with an Avaya Live Agent, use this code-snippet


app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields in the that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"message": "Agent is available and ticket is assigned to the agent",
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}

note

apiresponse represents the raw response from the avaya create ticket API

Sample response in case of failure


{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "Agent availability is false and hence not assigned to any agent.",
"ticketInfo": "{{apiresponse}}"
}

note

apiresponse represents the raw response from the avaya create ticket API

1.3 Custom Live Agent

To connect with a Custom Live Agent, use this code-snippet


app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
category: "Sales",
priority: "MEDIUM",
customLiveAgentCustomFields: {customFields: {test: “yes”}}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields in the that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.
categorySalesStringCategory under which the ticket will be created.
priorityMEDIUMStringPriority of the ticket to be created.
customLiveAgentCustomFields{customFields: {test: “yes”}}ObjectCustom key:value pairs associated with the end user required to raise a ticket. You need to pass the value of this key as , in case no key:pairs are required.

Sample response in case of success


{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the custom live agent create ticket API

Sample response in case of failure


{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "Agent is unavailable to chat with the end user, hence transferring the control back to the bot.",
"ticketInfo": "{{apiresponse}}"
}
apiresponse represents the raw response from the custom live agent create ticket API

1.4 Freshchat Live Agent

To connect to a Freshchat Live Agent, please use this code-snippet:

   app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
assignedGroupId: "test-group",
freshChatUserId: "3554-cbcbc-dchchc",
freshChatUniqueIdentifier: "testInfo",
properties: [],
freshChatChannelId: "abce-ddede-eded-3454"
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields in the that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the user.
email[email protected]StringEmail address of the user.
nameRajeshStringName of the user.
assignedGroupIdSalesStringCategory under which the ticket will be created.
priority3554-cbcbc-dchchcStringFreshchat groupId to which the ticket should be assigned. The default value “” should be passed for this.
freshChatUserIdtest-groupStringFreshchat userId of the user, this is passed if the same ticket needs to be re-opened for the same user. The default value “” should be passed for this.
freshChatUniqueIdentifiertestInfoObjectA unique identifier that will reflect as referenceId in the freshchat agent portal if passed. The default value “” should be passed for this.
properties[{key:”Hash”, value: “Yes”} ]ArrayCustom properties that can be passed on while creating a ticket.
freshChatChannelIdabce-ddede-eded-3454StringThis API needs to be called from Postman, which in turn will fetch the list of channel IDs associated with that Freshchat account and confirms the client's authorization to access that account.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}

note

apiresponse represents the raw response from the freshchat live agent create ticket API

Sample response in case of failure:-

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "Agent is unavailable to chat with the end user, hence transferring the control back to the bot.",
"ticketInfo": "{{apiresponse}}"
}

::: note apiresponse represents the raw response from the freshchat live agent create ticket API :::

1.5 Kapture CRM Live Agent

To connect to a Kapture CRM Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.

Sample response in case of success


{
"assignedTo": true,
"success": true,
"message": "Agent is available and ticket is assigned to the agent",
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}

note

apiresponse represents the raw response from the kapture crm create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "Agent availability is false and hence not assigned to any agent.",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the kapture crm create ticket API

1.6 Locobuzz Live Agent

To connect to a Locobuzz Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
category: "Sales",
priority: "MEDIUM",
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.
categorySalesStringCategory under which the ticket will be created.
priorityMEDIUMStringPriority of the ticket to be created.
sentimentHappyStringUser sentiment. Default value to be passed for this key is “”.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the locobuzz live agent create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "Agent is unavailable to chat with the end user, hence transferring the control back to the bot.",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the locobuzz live agent create ticket API

1.7 Genesys Live Agent

To connect to a Genesys Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
genesysCustomFields: {customFields: {test: “yes”}}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});
```s

This table consists of sample values, data types and descriptions for all the fields that need to be filled.


| Field name | Sample value | Data type |Description|
| -------- | -------- | -------- |---------|
| issue | Test description | String |The subject/topic/reason why the ticket is created.
phone| 9870000000 | String |Mobile number of the end user.
email| [email protected] |String| Email address of the end user.
name| Rajesh| String|Name of the end user.|
genesysCustomFields|{customFields: {test: “yes”}}|Object|Custom key:value pairs associated to the end user required to raise a ticket. You need to pass the value of this key as {}, in case no key:pairs are required.


**Sample response in case of success**
```json
{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the genesys create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from genesys create ticket API

1.8 Genesys Cloud Live Agent

To connect to a Genesys Cloud Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
genesysCloudCustomFields: {customFields: {test: “yes”}}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.
genesysCloudCustomFields {customFields: {test: “yes”}}ObjectCustom key:value pairs associated to the end user required to raise a ticket. You need to pass the value of this key as , in case no key:pairs are required.

Sample response in case of success


{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the genesys cloud create ticket API

Sample response in case of failure


{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from genesys cloud create ticket API

1.9 Intercom Live Agent

To connect to an Intercom Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
intercomLiveAgentCustomFields: {customFields: {test: “yes”}}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.
intercomLiveAgentCustomFields{customFields: {test: “yes”}}ObjectCustom key:value pairs associated to the end user required to raise a ticket. You need to pass the value of this key as , in case no key:pairs are required.

Sample response in case of success


{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the intercom create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the intercom create ticket API

1.10 Nice Incontact Live Agent

To connect to a Nice Incontact Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the nice-incontact create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
apiresponse represents the raw response from the nice-incontact create ticket API

1.11 Talishma Live Agent

To connect to a Talishma Live Agent, please use this code-snippet

          app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
}
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});

This table consists of sample values, data types and descriptions for all the fields that need to be filled.

Field nameSample valueData typeDescription
issueTest descriptionStringThe subject/topic/reason why the ticket is created.
phone9870000000StringMobile number of the end user.
email[email protected]StringEmail address of the end user.
nameRajeshStringName of the end user.

Sample response in case of success

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the talishma create ticket API

Sample response in case of failure

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the talishma create ticket API

1.12 Salesforce Live Agent


app.raiseTicketForThirdPartyLiveChat({
issue: "Test Issue",
contact: {
phone: "9870000000",
name: "Raj",
email: "[email protected]"
},
salesforceLiveChatCustomFields: [],
salesforceLiveChatCustomEntities: [],
salesforceLiveChatAgentId: "",
salesforceLiveChatAgentAssignedMessage: "",
salesforceLiveChatVisitorLanguage: "English",
salesforceLiveChatQueuePositionMessage: "",
salesforceLiveChatUpdatedQueuePositionMessage: "",
salesforceLiveChatAgentTransferredMessage: "",
salesforceLiveChatEstimatedWaitTimeMessage: "",
salesforceLiveChatDisplayAgentName: true,
salesforceLiveChatIdleTimeWarningMessage: “”,
salesforceLiveChatIdleTimeTimeoutMessage: “”,
salesforceLiveChatConnectionFailureMessage: “”,
salesforceLiveChatAgentDisconnectMessage: “”,
salesforceLiveChatAgentTimeoutMessage: “”
}).then((ticketData) => {
app.log(ticketData, "ticketData");
// Display appropriate message based on the ticketData
}).catch((error) => {
app.log(error, 'error');
//Error handler
});
Field nameSample valueData typeDescription
issueTest descriptionStringThe subject, topic, and reason for creating the ticket.
phone9870000000StringMobile number of the user.
email[email protected]StringEmail address of the user.
nameRajeshStringName of the user.
salesforceLiveChatCustomFieldsSee belowArrayThe details provided by the user before initiating the chat.
salesforceLiveChatCustomEntitiesSee belowArrayThe records are created or searched based on the enabled EntityFieldsMaps.
salesforceLiveChatAgentId0055g00000HEbLDStringThe agentId required to enable the sticky agent feature.
salesforceLiveChatAgentAssignedMessageYou are now connected to liveAgent.StringMessage shown to the user after an agent is assigned. Use `liveAgent` to display the agent's name.
salesforceLiveChatVisitorLanguageEnglishStringLanguage preferred by the user.
salesforceLiveChatQueuePositionMessageYour queue position is positionStringMessage shown when the ticket is in queue. Use `position` to display the queue number.
salesforceLiveChatUpdatedQueuePositionMessageYour current queue position is positionStringMessage shown when queue position changes.
salesforceLiveChatAgentTransferredMessageYour chat has been transferred to liveAgentStringMessage shown when the chat is transferred to another agent.
salesforceLiveChatEstimatedWaitTimeMessageThe estimated wait time for the chat to get assigned is waitTime secondsStringEstimated wait message. Use `waitTime` to show seconds.
salesforceLiveChatDisplayAgentNametrueBooleanEnable to show the agent's name upon assignment.
salesforceLiveChatIdleTimeWarningMessageIdle warning messageStringMessage shown when there's user inactivity.
salesforceLiveChatIdleTimeTimeoutMessageIdle timeout messageStringMessage when the chat is terminated due to inactivity.
salesforceLiveChatConnectionFailureMessageConnection failureStringMessage shown when there's a failure in connecting with the agent.
salesforceLiveChatAgentDisconnectMessageAgent has disconnectedStringMessage shown when an agent disconnects and others are available.
salesforceLiveChatAgentTimeoutMessageAgent timeout occurredStringMessage when the agent timeout threshold is crossed.

Sample response in case of success:

{
"assignedTo": true,
"success": true,
"status": "ASSIGNED",
"ticketInfo": "{{apiresponse}}"
}
note

apiresponse represents the raw response from the salesforce create ticket API

Sample response in case of failure:

{
"success": false,
"assignedTo": false,
"agentNotAvailable": true,
"message": "TicketId is not created and transferring the control back to the bot",
"ticketInfo": "{{apiresponse}}"
}

note

apiresponse represents the raw response from the salesforce create ticket API

2. Configuration

You can configure any of the above mentioned live agent integration(s) by following these steps:-

To enable the integration in the yellow.ai Integrations Module,

  1. Login to app.yellow.ai, search for your bot in the Search Projects section and then click the bot.
drawing
  1. Click the Growth icon on the left navigation bar.
drawing
  1. Click Data Explorer. You will be redirected to the cloud.yellow.ai’s UI.
drawing
  1. On the top left corner, click the drop-down and choose Integrations.
drawing
  1. Configure the required live chat integration
drawing
  1. .After entering the required values, click Connect and the integration will get enabled on yellow.ai.