Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Disable redirect after document signing #37

Closed
Podolyan98 opened this issue Jul 11, 2023 · 7 comments
Closed

Disable redirect after document signing #37

Podolyan98 opened this issue Jul 11, 2023 · 7 comments

Comments

@Podolyan98
Copy link

Is it possible to disable the return_url in the createRecipient endpoint? Or maybe there is another way to get the link to the Envelope?

@mike-mej
Copy link

Hello @Podolyan98

Thanks for contacting us.

Regarding this, It is not the possibility to disable it.

On how else to get the singing url :
You can either choose captive/embedded signing and get the URL through that call, or use remote signing and get access to the envelope via email.

Please check the following documentation:
https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/embedding/

I hope the above helps.

@InbarGazit
Copy link
Member

What do you want the end-user to see after they finish singing?

@Podolyan98
Copy link
Author

@mike-mej, @InbarGazit I would like to receive a link just like when sending an Envelope via Email (eg009_use_template.py). First, I receive an email with a link to the document. After signing, I can come back in a few days and see the document

image

@mike-mej
Copy link

@Podolyan98

According to this you are looking for remote signing,

In that case you will need to remove the ClientUserId when defining the recipient.
To clarify, if you exclude the Client User ID when specifying the recipient, they will receive an email link for signing without the need for a signing session call. In the case where a recipient has a Client User ID, they will be considered a captive recipient and will not receive an email invitation. By removing the Client User ID, the recipient will be treated as a standard Remote recipient and will receive email notifications.

@InbarGazit
Copy link
Member

"come back in a few days" what does that mean? using the same link? the link may have expired by then, you will need to generate a new one

@InbarGazit
Copy link
Member

@Podolyan98 can you please explain if you still need help here?

@Podolyan98
Copy link
Author

@InbarGazit Looks like I solved the problem by using a fake recipient_id:

class CreateRecipientView:

    @classmethod
    def worker(cls, args):
        envelope_args = args['envelope_args']
        api_client = create_api_client(base_path=args['base_path'], access_token=args['access_token'])
        envelope_api = EnvelopesApi(api_client)
        recipient_view_request = RecipientViewRequest(
            authentication_method='None',
            return_url=envelope_args['return_url'],
            user_name=envelope_args['signer_name'],
            email=envelope_args['signer_email'],
            recipient_id=uuid.uuid4().int & (1<<24)-1,
        )
        results = envelope_api.create_recipient_view(
            account_id=args['account_id'],
            envelope_id=envelope_args['envelope_id'],
            recipient_view_request=recipient_view_request
        )
        return results

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants