docusign / docusign-esign-php-client

The Official Docusign PHP Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
https://www.docusign.com/devcenter
MIT License
196 stars 123 forks source link

QUESTION: Signers Order #200

Closed samuel-lujan closed 1 year ago

samuel-lujan commented 1 year ago

How can I set the user id X to be the first to sign, after the Y and then the next ones... One By One, try to find something on documentation but I so confused if this is a Signer configuration, or and Envelope Configuration.

ashleyurena commented 1 year ago

Hello Samuel,

The parameter is routingOrder and it is set in the recipients definition, here is an example:

"recipients": { "ssigner": [{ "email": "ashleyu.dstest+edit@gmail.com", "name": "Lior", "recipientId": "1", "routingOrder": "1", },... Also, here is our documentation: https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/

samuel-lujan commented 1 year ago

Pretty good! Thanks :)