> For the complete documentation index, see [llms.txt](https://docs.transactionlink.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.transactionlink.io/docs/v1/integrations/zoho-sign.md).

# Zoho Sign

### Input - Basic

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

### Input - Template

```json
[
  {
    "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

| Attribute               | Type               | Description              |
| ----------------------- | ------------------ | ------------------------ |
| [signature](#signature) | `array of objects` | List of signed documents |

#### signature

| Attribure           | Type     | Description                                |
| ------------------- | -------- | ------------------------------------------ |
| 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

{% code overflow="wrap" %}

```json
{  
  "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"
    } ]
  }
}
```

{% endcode %}
