Can I get the url for managing an envelope from the Docusign API?

这一生的挚爱 提交于 2020-01-04 04:43:27

问题


I'm able to create an envelope with the API which returns the envelopeId which looks like:

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

When I navigate 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 that "ad05458248c54654a16a54195bf72ffe" id is. I've tried every envelope API in the documentation (many don't make sense, but I tried them anyways):

/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 that id isn't anywhere.

Is there a way to retrieve that URL id? and/or is there another way I can get the url for the envelope?


回答1:


The ID that appears as part of any URL when you're 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 the "Create Envelope" API request is the ID that you'll want to use with any API request that requires an Envelope ID.

It's not exactly clear to me what you mean by "[url for] managing an envelope" -- but I'd suggest you explore the following operations in the DocuSign REST API Guide:

  • Post Envelope Correction (page 146)
  • Modify or Correct and Resend Recipient Information (page 137)
  • Post Sender View (page 149)

(I'd guess that "Post Envelope Correction" is likely what you're after.)



来源:https://stackoverflow.com/questions/25798387/can-i-get-the-url-for-managing-an-envelope-from-the-docusign-api

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!