03-15-2024 01:40 AM
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.
Solved! Go to Solution.
03-15-2024 03:24 AM - edited 03-15-2024 03:25 AM
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
03-15-2024 04:15 AM
cant believe there are spam bots even on the cisco forum nowadays, dead internet theory is getting real
03-15-2024 03:24 AM - edited 03-15-2024 03:25 AM
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
03-15-2024 03:50 AM
Just what i was looking for, looks very dynamic and adaptable, thanks
03-15-2024 04:01 AM
Also just found this, here is a better example for what you are trying to do.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide