Copy link to clipboard
Copied
Sending documents and collecting signatures and approvals is what Adobe Sign is all about!
Every customer has different requirements regarding who needs to interact with the document and in what order, so there are a number of workflow features available in the Send page interface you should know about.
Signers receive and sign the document in the order that their e-mail addresses were entered into the To: field. Once the last signer completes the signing process, then all parties receive a Signed & Filed e-mail with the signed PDFs attached.
2. Parallel signing workflow:
Click Complete in Any Order to start a parallel workflow.
All the recipients receive the document at the same time and can sign in any order. Once the last signer has completed the signing process, then all parties receive a Signed & Filed e-mail with the signed PDFs attached.
3. Hybrid workflow (Enterprise only)
A “Hybrid” workflow is an instance of the sequential participation order where one or more of the steps includes two or more recipients gaining access to the document at the same time. All of the signers/approvers of the “parallel” step will need to complete their part before the sequential process moves to the next step.
To create a hybrid group, enter the email addresses of each party as if they were individual recipients, and then click and drag the recipient field over another one in the hybrid group. You will see on screen the message that you are creating a parallel group. Manually changing the index numbers to the same value will also create the hybrid group.
Are you someone who loves the Tutorial, rather than reading the steps? Watch the video
Recipient Groups are useful when you need sign-off from a team or an organization, but not from a specific individual in that group. Any member in the group is authorized to sign or approve on behalf of the entire group.
To understand this with an example, click here
Additional, yet useful information:
An account administrator can set the default signing order or remove this option for the sender.
Navigate to Account > Account Settings > Send Settings > Signing Order or Recipient Groups
Hope this gives a better clarity of all the Signing workflows of Adobe Sign. Have any further question in mind? join the conversation here. We are listening!
To discover a host of other great features – Go straight to: Adobe Sign Get Started guide | Manage, track, and change agreements | Looking for an option to delete document from Adobe Sign? We can help you!| Sent a document for signature to an incorrect email? Here’s how you can make correction.
Copy link to clipboard
Copied
@AkanchhaS Is there a way to configure these signing orders through the REST API? Looking at the swagger documentation for creating an agreement https://secure.na1.adobesign.com/public/docs/restapi/v6#!/agreements/createAgreement, it doesn't look like you can configure the participantSets like that.
Copy link to clipboard
Copied
Considering the webportal Send page use the same API call, it's yes you can use the API to achieve the same result. 🙂
Here's the json covering the participantsetinfo:
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "",
"id": "",
"securityOption": {
"authenticationMethod": "",
"nameInfo": {
"firstName": "",
"lastName": ""
},
"notaryAuthentication": "",
"password": "",
"phoneInfo": {
"countryCode": "",
"countryIsoCode": "",
"phone": ""
}
}
}
],
"order": 1,
"role": "",
"id": "",
"label": "",
"name": "",
"privateMessage": "",
"visiblePages": [
""
]
}
]
The participantSetsInfo is an array in which you can have multiple sets.
Within each set you have a memberinfos array, where in most case you have a single member, but if using recipient groups this can have multiple members.
Copy link to clipboard
Copied
The sequential order explained above can be done as below. (i have simplified the json to the minim needed:
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "myexample1@example.com"
}
],
"order": 1,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample2@example.com"
}
],
"order": 2,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample3@example.com"
}
],
"order": 3,
"role": "APPROVER"
},
{
"memberInfos": [
{
"email": "myexample4@example.com"
}
],
"order": 4,
"role": "SIGNER"
}
]
Copy link to clipboard
Copied
For the parallel workflow, simply set all sets to the same signing order:
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "myexample1@example.com"
}
],
"order": 1,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample2@example.com"
}
],
"order": 1,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample3@example.com"
}
],
"order": 1,
"role": "APPROVER"
},
{
"memberInfos": [
{
"email": "myexample4@example.com"
}
],
"order": 1,
"role": "SIGNER"
}
]
Copy link to clipboard
Copied
3 to have a hybrid of sequential and parallel adjust the signing order:
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "myexample1@example.com"
}
],
"order": 1,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample2@example.com"
}
],
"order": 2,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample3@example.com"
}
],
"order": 2,
"role": "APPROVER"
},
{
"memberInfos": [
{
"email": "myexample4@example.com"
}
],
"order": 3,
"role": "SIGNER"
}
]
So in the above, the agreement goes to the first set, then they sign, it goes to the 2 sets with signing order 2, then these 2 sign and approver the agreement is sent to the final participant (example4@example.com)
Copy link to clipboard
Copied
To create a recipient group, add a member to to to relevant participantset memberinfo array.
"participantSetsInfo": [
{
"memberInfos": [
{
"email": "myexample1@example.com"
}
],
"order": 1,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample2@example.com"
}
],
"order": 2,
"role": "SIGNER"
},
{
"memberInfos": [
{
"email": "myexample3A@example.com"
},
{
"email": "myexample3B@example.com"
}
],
"order": 2,
"role": "APPROVER",
"name": "a recipient group"
},
{
"memberInfos": [
{
"email": "myexample4@example.com"
}
],
"order": 3,
"role": "SIGNER"
}
]
Members of a recipient group receive the agreement at the same time, but only one mmeber has to sign in order to move teh agreement to the next step