" /> Callback parameter available in URS routing - Genesys CTI User Forum

Author Topic: Callback parameter available in URS routing  (Read 2021 times)

Offline vma

  • Sr. Member
  • ****
  • Posts: 255
  • Karma: 0
Callback parameter available in URS routing
« on: October 19, 2020, 11:23:59 AM »
Advertisement
Hi guys,

I've configured a callback service using GMS and ORS.
All works well and if I set a parameter when creating the Callback Request I can see it in the WDE Toaster and Case Data.
The thing is that I would like to have this parameter in URS routing also.
Example:
I create the callback with:
[code]http://xx.xx.xxx.xxx:yyyyy/genesys/1/service/callback/User-Terminated-Preview?_customer_number=1800&_urs_virtual_queue=GMS_VQ_SIP_Switch&str_value1=Info1[/code]

I've configured in the callback service:
[code]_attach_udata=separate_keys
_urs_udata_xfer_keys=str_value1[/code]

But in the WaitForTarget strategy when I try to attribute this value to a variable
[code]StrValiable=UData['str_value1'][/code]
it comes up empty. I would have expected "Info1"
Do you know who can I check the value of this parameter in URS?

Thank you!

Offline vma

  • Sr. Member
  • ****
  • Posts: 255
  • Karma: 0
Re: Callback parameter available in URS routing
« Reply #1 on: October 20, 2020, 10:50:59 AM »
Actually I managed to make this work myself using a combination of
"Passing Configuration Tokens in Queries" from https://docs.genesys.com/Documentation/GMS/latest/API/CallbackServicesAPI
and
_urs_extension_data option on the service

Thanks!