04-15-2014 01:06 AM
Hi
i'am trying to create a initiateDirectTransfer, with no luck
Do any one have a running ex. ?
Br,
M
Solved! Go to Solution.
04-15-2014 10:27 AM
Also note that SingleStepTransfer is supported for UCCE only. For UCCX you will get an error INVALID ACTION TRANSFER_SST
04-15-2014 07:33 AM
Are you wanting to transfer using the Webservices API or the gadget javascript library?
For the Webservices API use http://
</Dialog
Where toAddress is the extension to transfer to
And targetMediaAddress is the extension of the User requesting the transfer
For gadget javascript use:
dialog.initiateDirectTransfer(userExt, toAddress, callbackHandlers);
where userExt is the extension of the user requesting the transfer
and toAddress is the extension to transfer to
I tested the following and the transfer works for me
mySSTransfer : function (target){
clientLogs.log("transferring to " + target);
var options = {};
currdialog.initiateDirectTransfer(user.getExtension(), target, );
},
04-15-2014 10:27 AM
Also note that SingleStepTransfer is supported for UCCE only. For UCCX you will get an error INVALID ACTION TRANSFER_SST
04-15-2014 11:15 PM
Last night I just found out that it is not possible to to this in the UCCX, but thanks any way.
Br,
Morten
PS. are there any quick way to get the logs from the UCCX Finesse I generate in the Javascript code?
04-16-2014 06:57 AM
You can try the url https:// and look at the clientlogs
04-24-2014 01:42 AM
Hi dlender
Is it possible to make at transfer in UCCX?
Br,
M
04-24-2014 08:14 AM - last edited on 03-05-2021 09:58 AM by dekwan
Per the Finesse WebServices Developer Guide here
https://developer.cisco.com/docs/finesse/#!rest-api-dev-guide
The Dialog Initiate a single-step transfer API applies to Finesse deployments with Unified CCE only.
.
If you attempt to use this API on a Finesse deployment with Unified CCX, Finesse sends the following API error:
INVALID ACTION TRANSFER_SST
04-24-2014 02:16 PM
Hi Dlender
Yes I got the part about not been able to make a STT , but is it possible to make a normal transfer?
I cant find any helpful things in the doc.
Br,
M
04-28-2014 07:46 AM
You make a consult call on the existing Dialog. See the Dialog - Make a consult call request
In the Finesse WebServices Developer Guide.
Then you complete the transfer using the Dialog - Take action on a participant within a dialog
With RequestedAction Transfer.
05-18-2014 04:11 PM
Hi dlender;
I 'am trying to create a initiateDirectTransfer too after a post call survey call. I understand that I can't use a direct transfer using UCCX. Do you have a running ex. on how to create an initiateDirectTransfer?
Thanks in advance!
mm
05-18-2014 04:34 PM
Do you mean a Single Step transfer? As you stated, this isn’t supported for UCCX.
05-18-2014 04:43 PM
Sorry, I just realized you want a SingleStepTransfer in a gadget not through the REST API.
Here is an example of calling initiateDirectTransfer for UCCE
mySSTransfer : function (target){
clientLogs.log("transferring to " + target);
var options = {};
currdialog.initiateDirectTransfer(user.getExtension(), target, );
},
The SetCallVariable sample gadget attached to this post has a SingleStepTransfer in it.
05-19-2014 06:39 AM
Hi dlender,
Thanks for your quick response. I am a little confused. Can I use mySSTransfer with UCCX?
mm
05-19-2014 07:01 AM
No, you cannot perform a single step transfer with UCCX.
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