cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
770
Views
0
Helpful
2
Replies

"Undo" Call Handled IPCC

Matthew.Corum
Level 1
Level 1

Hello,

Is there a way to remove the call handled flag from the Set Contact Info step once you have marked a call as handled?

Thanks,

Matthew

1 Accepted Solution

Accepted Solutions

Anthony Holloway
Cisco Employee
Cisco Employee

No.

But you could hold your intent to mark the call as handled in a variable:  is_handled = true | false

Then at the very end of the script (or upon ContactInactiveException) you can mark the contact as handled based on the value of your variable.  This way, it's like a soft marking.  BTW, you get a few seconds after the call ends to mark the contact, but not long, so don't dilly dally!

View solution in original post

2 Replies 2

Anthony Holloway
Cisco Employee
Cisco Employee

No.

But you could hold your intent to mark the call as handled in a variable:  is_handled = true | false

Then at the very end of the script (or upon ContactInactiveException) you can mark the contact as handled based on the value of your variable.  This way, it's like a soft marking.  BTW, you get a few seconds after the call ends to mark the contact, but not long, so don't dilly dally!

That's a great idea!

Thank you very much.