Can I get the envelope control url from the Docusign API?

I can create an envelope with an API that returns an envelopeId that looks like this:

13f23354-7eee-41d3-897a-c1353a1e465c

When I go to docusign in my browser and open the envelope, the url is: https://na2.docusign.net/MEMBER/EnvelopeSetup.aspx?ti=ad05458248c54654a16a54195bf72ffe

I don't see what the id "ad05458248c54654a16a54195bf72ffe" is. I've tried every API envelope in the documentation (many don't make sense, but I tried them anyway):

/accounts/{accountId}/envelopes/{envelopeId}  
/accounts/{accountId}/envelopes/{envelopeId}/audit_events
/accounts/{accountId}/envelopes/{envelopeId}/custom_fields
/accounts/{accountId}/envelopes/{envelopeId}/email_settings
/accounts/{accountId}/envelopes/{envelopeId}/notification
/accounts/{accountId}/envelopes/{envelopeId}/templates

      

But this identifier is missing.

Is there a way to get this url id? and / or is there any other way to get the url for the envelope?

+3


source to share


1 answer


The ID that appears as part of any URL when using the DocuSign web console is an internal ID - you cannot use it with the API in any way. The envelope ID value that DocuSign returns in response to a Create Envelope API request is the ID you want to use with any API request that requires an envelope ID.

It's not clear what you mean by "[url for] envelope management", but I suggest you study the following operations in the DocuSign REST API Guide :



  • Post Envelope Correction (p. 146)
  • Change or correct and resend recipient information (page 137)
  • View Sender (page 149)

(I would guess "Post Envelope Correction" is most likely after.)

+1


source







All Articles