• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Dual Signatures Using API

New Here ,
Sep 18, 2021 Sep 18, 2021

Copy link to clipboard

Copied

We have an application which pushes a document to be signed to Adobe for eSignature via the API.  Sometimes, this file requires several signers - which we include when pushing the document. 

But Adobe just assumes that any one of those people can execute the document.  When one person signs, Adobe says: "you signed on behalf of this entire group"

We want to make it so that the document is not considered complete until all signatories have signed.  Can this be done?

TOPICS
Adobe Sign forms , How to sign , Send documents

Views

286

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Sep 20, 2021 Sep 20, 2021

Copy link to clipboard

Copied

you are need to split the member into their own participant groups, as it sounds like you are adding the users in the same group.

Below is what you are doing (based on the behaviour you describe):

 "participantSetsInfo": [
    {
      "memberInfos": [
        {
          "email": "myeail@example.com"
        },
 {
          "email": "myeail2@example.com"
        },
 {
          "email": "myeail3@example.com"
        }
      ],
      "order": 1,
      "role": ""
    }
  ]

 What you should be doing is:

 "participantSetsInfo": [
    {
      "memberInfos": [
        {
          "email": "myeail@example.com"
        }
      "order": 1,
      "role": "SIGNER"
    },
{
      "memberInfos": [
        {
          "email": "myeail2@example.com"
        }
      "order": 2,
      "role": "SIGNER"
    },
{
      "memberInfos": [
        {
          "email": "myeail3@example.com"
        }
      "order": 3,
      "role": "SIGNER"
    }
  ]

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 26, 2021 Sep 26, 2021

Copy link to clipboard

Copied

LATEST

Thank you!  That is exactly what I needed!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines