cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1656
Views
2
Helpful
4
Replies

Agent Automatic Ready State Specific Reason Code

FPENTEADO
Level 1
Level 1

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

 

4 Replies 4

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

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);

		}
};

 

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.

It´s necessary to use an AXL to do it?

No AXL -  Directly in Finesse (You have to make a custom gadget ) - it is pure javascript 

Please rate helpful posts and if applicable mark "Accept as a Solution".
Thanks, Thomas G. J.