Coder Social home page Coder Social logo

Comments (7)

mike-mej avatar mike-mej commented on August 25, 2024 1

@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.

from code-examples-python.

mike-mej avatar mike-mej commented on August 25, 2024

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.

from code-examples-python.

InbarGazit avatar InbarGazit commented on August 25, 2024

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

from code-examples-python.

Podolyan98 avatar Podolyan98 commented on August 25, 2024

@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

from code-examples-python.

InbarGazit avatar InbarGazit commented on August 25, 2024

"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

from code-examples-python.

InbarGazit avatar InbarGazit commented on August 25, 2024

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

from code-examples-python.

Podolyan98 avatar Podolyan98 commented on August 25, 2024

@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

from code-examples-python.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.