简体   繁体   中英

How to get EnvelopeID & Recipient view URL of Powerform in docusign using C#?

We are planning to integrate the docusign powerfroms in the upcoming project. After intiation of powerfrom will genreate the Envelope ID (Need to track in DB). We are unable to find the EnvelopeID. So how we can get EnvelopeID ? And Recipient view URl after creating sender envelope?

Finding the Envelope ID When a Powerform signing session is finished, DocuSign redirects to a URL (you can configure the base URL) which contains a number of URL parameters of which the Envelope Id (env) is one: env={envelope-id}. You will likely be interested in the evt parameter also. This indicates if the recipient completed their requested actions, or declined, session timed out etc.

Recipient View You cannot get a Recipient View for an envelope created via a Powerform. You can only get a Recipient View for an envelope created via an API call where the Recipient(s) in question were specified as being captive/embedded (clientUserId element present in the Recipient structure).

If you must use Poweforms, you could create a Powerform in which the first Recipient is embedded (Direct Signing Mode). Typically using this method the Powerform has a 'front end' which redirects the browser to the Powerform URL, passing in additional relevant information such as the recipient name. The user would then be presented with the DocuSign signing session (similar to Recipient View). One of the limitations here is all remaining Recipients (if any) would need to be remote, ie not embedded/captive.

I have configured Default Landing Pages for PowerForms as u suggesst in following format

http://Site/DocuSign?env= {envelope-id}&action=SigningComplete

I will be giving follwing output

http://Site/DocuSign?env= {envelope-id}&action=SigningComplete&pf=2b125d0d-b682-4ee5-94db-bbe3c2351a12&r=7dadf63d-808a-4c63-b918-f26afad78886

In this "env" nothing coming "action" type of action defined Landing Pages for PowerForm "pf" is PowerForm ID May I know what id is coming in "r" query string? and Is it possible to get the document using API by using the ID coming from Query string "r"?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM