03-02-2023 12:17 PM
Hi
We are working with UCCX version 12.5.
Is there a possibility that Agents change state to ready after x seconds on specifc reason code?
Regards
03-02-2023 12:30 PM
There are posts like this one that people have talked about using a custom gadget similar to what you're looking to do.
https://community.cisco.com/t5/contact-center/move-agent-into-ready-if-finesse-user-does-not-issue-a-makecall/td-p/4032515
03-03-2023 01:05 AM
Something like this (haven't testet it)
handleUserChange = function (userevent) {
currentState = user.getState();
currentReasoncode = user.getReasonCode();
if (currentState == "NOT_READY" && currentReasoncode == 'YOUR CODE' ] {
setTimeout(function(){ user.setState(states.READY) }, 5000);
}
};
03-09-2023 07:55 AM
It´s necessary to use an AXL to do it?
03-10-2023 03:56 AM - edited 03-10-2023 04:02 AM
No AXL - Directly in Finesse (You have to make a custom gadget ) - it is pure javascript
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