Skip to content

Commit

Permalink
Merge pull request #292 from Cognigy/feature/8x8
Browse files Browse the repository at this point in the history
Feature/8x8
  • Loading branch information
alexteusz authored Aug 11, 2022
2 parents aa21e4a + 3f8d174 commit 0b17fa0
Show file tree
Hide file tree
Showing 12 changed files with 1,649 additions and 2 deletions.
108 changes: 108 additions & 0 deletions extensions/8x8/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# 8x8

This Extension integrates with the 8x8 Agent Desktop and CRM system.

## Connections

**8x8 OAuth:**

This Connection is required to use the "Handover to Agent" Flow Node that starts a Live Chat conversation in the 8x8 Agent Desktop.
- username
- password
- tenant
- region

**8x8 CRM**

This Connection is required to use the "Get Customer" Flow Node that retrieves user information from the CRM based on a given email address.
- username
- password
- tenant

## Node: Handover To Agent

- [API Documentation](https://developer.8x8.com/contactcenter/reference/createcctransaction)

This Flow Node sends a Live Chat request to all online human agents that are logged in to the 8x8 Agent Desktop. Furthermore, it will send the Chat Transcript and Customer information.

## Node: Get Customer

This Flow Node retrieves Customer information from the 8x8 CRM system based on a given email address. The result is stored in the Input or Context object and looks similar to this example:

```json
{
"customer": [
{
"FIRSTNAME": [
"Laura"
],
"LASTNAME": [
"Wilson"
],
"COMPANY": [
"Cognigy"
],
"PBX": [
""
],
"COMMENTS": [
""
],
"ACCOUNTNUM": [
"10000000"
],
"customertype": [
"Default"
],
"EMAIL": [
"[email protected]"
],
"VOICE": [
"+123456789"
],
"ALTERNATIVE": [
""
],
"FAX": [
""
],
"ADDR1STR1": [
""
],
"ADDR1STR2": [
""
],
"ADDR1CITY": [
""
],
"ADDR1STATE": [
""
],
"ADDR1ZIP": [
""
],
"ADDR1COUNTRY": [
""
],
"ADDR2STR1": [
""
],
"ADDR2STR2": [
""
],
"ADDR2CITY": [
""
],
"ADDR2STATE": [
""
],
"ADDR2ZIP": [
""
],
"ADDR2COUNTRY": [
""
]
}
]
}
```
Binary file added extensions/8x8/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0b17fa0

Please sign in to comment.