I’m trying to open a new tab from my application, allowing to an user sign an agreement. I have follow the tutorials, consult the API, test it with the API Explorer, and I’m not getting that the sign appear in the returned URL.
I make two requests:
- https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/enveloperecipients/list/
- https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createrecipient/
The first one gives me all information I need to make the second one:
{
userName: “name”,
email: “valid@email”,
recipientId: “a number”,
returnUrl: "http://example.org",
authenticationMethod: "None"
}
This return a response 200 with a URL.
When I open the URL in the browser, I can see the document but I cannot sign it.
What am I doing wrong?