cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
664
Views
1
Helpful
4
Replies

Webex Contact Center - integrate custom Reports into the Agent Desktop

pescla
Spotlight
Spotlight

I know that you can view some Team/Queue live reports in the Agent Desktop, and i know you can customize the Agent desktop via .json Layout.

 

But i could not find any configuration that directly links the big reporting stuff from the Customer Journey Analyzer to the Agent Desktop - i created a custom Visualization and a custom Dashboard, but cant see any way to add those reports to the Desktop.

 

I did see that you can export the Visualizations - but only as Excel and XML, so i dont know how (if it works at all) to implement that into the .json file for the layout.

 

Is this possible at all? We have an upcoming WxCC POC with a big customer looking to move away from on-prem CC and they are very interested in reports that are directly visible for the Agent

 

 

PS - i posted this in the Webex Administration forum, since there doesnt seem to be a category here for Webex Contact Center, hope it still fits.

1 Accepted Solution

kgroves42
Level 3
Level 3

Hello, 

You should be able to add the Report using iframes within the desktop json file. Here is a link that explains and gets you started using custom desktops

https://webexcc.github.io/pages/Agent/#custom-desktop-layout

Here is a snipit of what I used to add a report to the agents desktop. the key is adding the tId and rId of the custom report in the url you add to the json desktop file. 

"navigation": [
{
"nav": {
"label": "Real Time Idle Codes",
"icon": "/app/images/wxm.bcd45cc3.svg",
"iconType": "other",
"navigateTo": "Statistics",
"align": "top"
},
"page": {
"id": "Statistics",
"widgets": {
"comp2": {
"comp": "agentx-wc-iframe",
"attributes": {
"src": "https://analyzer-v2.wxcc-us1.cisco.com/analyzer/view/visualization?tId=55341###&rId=2454###"
}
}
},
"layout": {
"areas": [
[
"comp2"
]
],
"size": {
"cols": [
1
],
"rows": [
1
]
}
}
}
},

 

Hope that helps

View solution in original post

4 Replies 4

cant believe there are spam bots even on the cisco forum nowadays, dead internet theory is getting real

kgroves42
Level 3
Level 3

Hello, 

You should be able to add the Report using iframes within the desktop json file. Here is a link that explains and gets you started using custom desktops

https://webexcc.github.io/pages/Agent/#custom-desktop-layout

Here is a snipit of what I used to add a report to the agents desktop. the key is adding the tId and rId of the custom report in the url you add to the json desktop file. 

"navigation": [
{
"nav": {
"label": "Real Time Idle Codes",
"icon": "/app/images/wxm.bcd45cc3.svg",
"iconType": "other",
"navigateTo": "Statistics",
"align": "top"
},
"page": {
"id": "Statistics",
"widgets": {
"comp2": {
"comp": "agentx-wc-iframe",
"attributes": {
"src": "https://analyzer-v2.wxcc-us1.cisco.com/analyzer/view/visualization?tId=55341###&rId=2454###"
}
}
},
"layout": {
"areas": [
[
"comp2"
]
],
"size": {
"cols": [
1
],
"rows": [
1
]
}
}
}
},

 

Hope that helps

Just what i was looking for, looks very dynamic and adaptable, thanks

Also just found this, here is a better example for what you are trying to do. 

https://github.com/WebexSamples/webex-contact-center-api-samples/tree/main/widget-samples/iframe-widget-sample