rae.esperanza

How do I enable Parallel Signing in my rest api

0 votes

Hi, 

How do I enable parallel signing? A use case will be around 1-10 signatories that we need to be able to sign in any order at and at the same time. We're integrating One span using Rest API, appreciate if you can guide us what needs to be changed in the JSON or in the text tags.

 


Reply to: How do I enable Parallel Signing in my rest api

0 votes

Hi rae.esperanza,

 

Thanks for your post! In your package JSON > roles > index determines the signing order, see below example. Signers with lower index will sign first, signers with the same index will be able to sign in parallel. You can also follow up this guide for more information. 

 

{
  "roles": [
    {
      "id": "role1",
      "index": 0,
      "type": "SIGNER",
      "signers": [
        {
          "email": "[email protected]",
          "firstName": "FirstNameSigner1",
          "lastName": "LastNameSigner1"
        }
      ],
      "name": "signer1"
    },
    {
      "id": "role2",
      "index": 0,
      "type": "SIGNER",
      "signers": [
        {
          "email": "[email protected]",
          "firstName": "FirstNameSigner2",
          "lastName": "LastNameSigner2"
        }
      ],
      "name": "signer2"
    },
    {
      "id": "role3",
      "index": 0,
      "type": "SIGNER",
      "signers": [
        {
          "email": "[email protected]",
          "firstName": "FirstNameSigner3",
          "lastName": "LastNameSigner3"
        }
      ],
      "name": "signer3"
    },
    {
      "id": "role4",
      "index": 0,
      "type": "SIGNER",
      "signers": [
        {
          "email": "[email protected]",
          "firstName": "FirstNameSigner4",
          "lastName": "LastNameSigner4"
        }
      ],
      "name": "signer4"
    }
  ],

 

......
}

 

Duo

 

Duo Liang OneSpan Evangelism and Partner Integrations Developer


Hello! Looks like you're enjoying the discussion, but haven't signed up for an account.

When you create an account, we remember exactly what you've read, so you always come right back where you left off