I'm attempting to build embedded signing with my integration via REST API. I can successfully create the token with the bare minimum requirements.
{ "userName": "Derrick Test", "email": "email@email.com", "recipientId": "1", "clientUserId": "1", "returnUrl": "http://www.google.com", "authenticationMethod": "email" }
What I would like to enhance is redirect my signers to a specific URL on more than just completion. More specifically I would like to configure a different URL for the events:
cancel decline signing_complete viewing_complete
The REST documentation does not provide a JSON example when utilizing multiple events. Has anyone else been successful with this?