Zoho Sign

Input - Basic

[
  {
    "signingOrder": 1,
    "firstName": "firstName",
    "lastName": "lastName",
    "countryCode": "+48",
    "phoneNumber": "123-456-789",
    "email": "john.doe@test.com"
  }
]

Input - Template

[
  {
    "signingOrder": 1..N,
    "firstName": "firstName",
    "lastName": "lastName",
    "countryCode": "+48",
    "phoneNumber": "123-456-789",
    "email": "john.doe@test.com"
  },
  .
  .
  .
  {
    "signingOrder": N,
    "firstName": "firstName",
    "lastName": "lastName",
    "countryCode": "+48",
    "phoneNumber": "123-456-789",
    "email": "john.doe@test.com"
  }
]

Response Content

zohoSign

AttributeTypeDescription

array of objects

List of signed documents

signature

AttribureTypeDescription

resourceId

string

Identifier of signed document

resourceName

string

Name of the signed document

submittedResourceId

string

The ID of the sent document for signature.

resourcePath

string

Resource path

Example response

{  
  "zohoSign" : {
    "signature" : [ {
      "resourceId" : "bb9908c9-bdd0-4c10-95f7-311eb25cb286",
      "resourceName" : "Short hand tags examples.pdf",
      "submittedResourceId": "4bf7d321-7c8d-444c-b495-6e3f2c3b66b5",
      "resourcePath" : "resources/9f628cd8-66eb-4dd3-9c9c-81ea029b07c4/bb9908c9-bdd0-4c10-95f7-311eb25cb286/Short hand tags examples.pdf"
    }, {
      "resourceId" : "9cceb9ad-2c8a-42c3-8b96-1bffc4d036cd",
      "resourceName" : "Short hand tags examples.pdf",
      "submittedResourceId": "4bf7d321-7c8d-444c-b495-6e3f2c3b66b5",
      "resourcePath" : "resources/9f628cd8-66eb-4dd3-9c9c-81ea029b07c4/9cceb9ad-2c8a-42c3-8b96-1bffc4d036cd/Short hand tags examples.pdf"
    } ]
  }
}

Last updated