Inbar Gazit
Inbar Gazit
Are you using JWT? You will need to get consent by building a URL that goes to account-d.docusign.com with the IK and scopes. Did you do that part?
https://developers.docusign.com/platform/auth/consent/obtaining-individual-consent/ should help you do this
Also, if you're using JWT, you'll need the `impersonation `scope in addition to the `adm_store_unified_repo_read`
Sorry, I just noticed that you also had the `models_read` scope. Not sure what you're trying to do, but that scopes is reserved for Docusign internal use, and is not...
This is the old way to do this, this has moved under workflow. See full code in https://github.com/docusign/code-examples-node/blob/master/lib/eSignature/examples/phoneAuthentication.js ``` let signer1 = docusign.Signer.constructFromObject({ email: args.signerEmail, name: args.signerName, recipientId: RecipientId, routingOrder:...
@peiofour I'm confused, is this about SMS delivery or SMS authentication? these are two different things.
OK, thanks, do you still have an issue? or can I close this out?
` client_user_id=envelope_args["signer_client_id"` This value should also be on the recipient/signer you want. Can you post the rest of your code?
https://github.com/docusign/code-examples-python/blob/90585548532688ba73d98e39fabc9f504f20b02b/app/eSignature/examples/eg001_embedded_signing.py#L110C8-L119C10 This code: ``` # Create the signer recipient model signer = Signer( # The signer email=args["signer_email"], name=args["signer_name"], recipient_id="1", routing_order="1", # Setting the client_user_id marks the signer as embedded client_user_id=args["signer_client_id"]...
Eyal and everyone else, I apologize for not communicating and for the delays on this. We're working on this, we had some challenges which is why this is not done...