That’s correct.
In your API settings in the API connector you should set it as an Action with the appropriate data that it can return.
Then you can access it in the workflow under Plugins. When you do that you’ll be able to assign it’s return data to your database by saying Create New or Make Changes and selecting the return value from your API - it will look like return from step 2 or 3 or 4 of the workflow…
The fact is that it is not bubble who will call this URL, but the other application (yousign). And when this URL is called, I need to get the call and save the datas sent.
Here is the explication of the application :
urlcallback : URL called by Yousign to follow the process of each signature. We will send in GET these parameters :
status : status of the signature : ‘init’ when the IFRAME is opened, ‘waiting’ when the signer needs to enter the code to validate the signature, ‘signed’ when the signer signed the document(s), ‘signed_complete’ when all signers signed the document(s) (after getting this status, you could call the WS getCosignedFilesFromDemand to get the files signed), ‘error’ if an error has been detected during the signature, ‘cancel’ when the signer clicked on “Cancel button” if urlcancel is used.
token : token used in the IFRAME
Do you see what I mean ? I can’t use the API Connector so (I suppose), cause it’s Yousign who need to call my app …
Is that clear for you ?
Ah, great @mani2726 , thanks a lot, that certainly pointed me in the right direction!
Now I just have to figure out how to retrieve the url-parameter-data recieved in that GET-request I get and store it in my app… if you happen to know that as well that would be great