---
title: "DocuSign Connector | Lansweeper Platform"
slug: "docusign-connector"
description: "Manage DocuSign signature collection and document distribution with OAuth 2.0 integration. Follow setup steps for seamless connection and actions."
updated: 2026-07-17T15:54:14Z
published: 2026-07-17T15:54:14Z
canonical: "docs.lansweeper.com/docusign-connector"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lansweeper.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DocuSign Connector

<!-- # DocuSign Connector -->

:::(Warning) (Note on third‑party tools)
We aim to provide accurate and helpful details about third‑party tools, but we can’t guarantee that this information is always complete or up to date. If you notice any discrepancies, feel free to share them in the feedback section below. For the most reliable information, please always refer to the third‑party tool’s official documentation.
:::

[DocuSign](https://www.docusign.com/) is an electronic signature and digital transaction management platform.
This component allows you to create and manage envelopes, send documents for signature, track signature status, manage templates, and configure webhooks for event notifications.

## API Documentation

This component was built using the [DocuSign eSignature REST API Reference](https://developers.docusign.com/docs/esign-rest-api/reference/) currently utilizing v2.1.

## Connections

### OAuth 2.0

OAuth 2.0 connection for DocuSign

To connect to DocuSign using OAuth 2.0, a Developer Account is required to create integration applications.

#### Prerequisites

- A [DocuSign Developer Account](https://developers.docusign.com/) is required
- Access to the DocuSign Admin Console

#### Setup Steps

1. Log in to the [DocuSign Developer Account](https://developers.docusign.com/auth/docusign-demo/)
2. Click on the profile icon in the top right corner and select **My Apps & Keys**
3. Click **Add App and Integration Key** to create a new application
4. Enter the required application details
5. Under **Redirect URIs** in the Additional settings section, add the OAuth callback URL: `https://oauth2.flowbuilder.eu.lansweeper.com/callback` for EU sites or `https://oauth2.flowbuilder.us.lansweeper.com/callback` for US sites
6. Under the **Secret Keys** section, click **Add Secret Key** to generate a secret key
7. Copy the **Integration Key** (Client ID) and the newly generated **Secret Key** (Client Secret)
8. Click **Save** to save the application configuration

For more information on creating DocuSign integrations, refer to the [DocuSign Developer Documentation](https://developers.docusign.com/docs/esign-rest-api/esign101/auth/).

#### Configure the Connection

The DocuSign OAuth 2.0 connection requires the following fields:

- **Client ID** (Integration Key): Enter the Integration Key from step 7
- **Client Secret** (Secret Key): Enter the Secret Key from step 7
- **Authorization Header**: This field requires a Base64-encoded value in the format `Basic <encoded_credentials>`

To create the Authorization Header value:

1. Combine the Integration Key and Secret Key with a colon separator in the format: `<integration_key>:<secret_key>`
   - Example: `7c2b8d7e-xxxx-xxxx-xxxx-cda8a50dd73f:d7014634-xxxx-xxxx-xxxx-6842b7aa8861`

2. Encode this string to Base64 using one of the following methods:

   **Option A: Using an online encoder**
   - Navigate to a [Base64 Encoder](https://www.base64encode.org/)
   - Enter the combined key string in the format above
   - Click **ENCODE**
   - Copy the encoded result (e.g., `NWMyYjhkN2.....hODg2MQ==`)

   **Option B: Using JavaScript**
   - Open a JavaScript console and run:

     ```javascript
     btoa(
       "7c2b8d7e-xxxx-xxxx-xxxx-cda8a50dd73f:d7014634-xxxx-xxxx-xxxx-6842b7aa8861",
     );
     ```

   - Copy the returned Base64 string

3. Enter the **Authorization Header** value as: `Basic <base64_encoded_string>`
   - Example: `Basic NWMyYjhkN2.....hODg2MQ==`

#### Verify Connection

After configuring the connection, save the integration to authenticate with DocuSign. The OAuth flow will prompt for user authorization to complete the connection.

#### Going Live

DocuSign requires apps created in the developer environment to complete a Go-Live review before they can access real production accounts. This process verifies the integration is production-ready and meets DocuSign's requirements for handling legally binding signature workflows.

DocuSign apps pass through two states before they are ready for deployment.

**Developer environment (before Go-Live):** Users can authenticate and the OAuth flow completes normally, but the integration connects to `account-d.docusign.com`. Only demo accounts and test documents are accessible. No real production DocuSign accounts or live documents can be reached. This is the expected state during development and testing.

**Production (after Go-Live):** The integration connects to `account.docusign.com`. Users authenticate with their real DocuSign credentials and live documents and accounts are fully accessible.

**Complete the Go-Live process before deploying to end users.** DocuSign apps created in the developer account connect to the demo environment (`account-d.docusign.com`). Until Go-Live is approved, the integration cannot access real production DocuSign accounts.

#### Go-Live Requirements

- The app must make at least 20 API calls in the demo environment to demonstrate functional testing before Go-Live is available

#### Go-Live Process

1. Log in to the [DocuSign Developer Account](https://developers.docusign.com/auth/docusign-demo/)
2. Navigate to **My Apps & Keys** and select the application
3. Click **Go Live** to submit the application for production access
4. DocuSign reviews the application. Reviews typically complete within 3 business days
5. Once approved, the application is promoted to the production environment

#### Production Endpoints

After Go-Live approval, update the integration to connect to production endpoints:

- **Authorization URL**: `https://account.docusign.com/oauth/auth`
- **Token URL**: `https://account.docusign.com/oauth/token`
- **API Base URL**: `https://www.docusign.net/restapi`

The demo environment uses `account-d.docusign.com`. Ensure URLs are updated to production endpoints after Go-Live.

For detailed Go-Live requirements, refer to the [DocuSign Go-Live documentation](https://developers.docusign.com/docs/esign-rest-api/go-live/).

This connection uses OAuth 2.0, a common authentication mechanism for integrations.
Read about how OAuth 2.0 works [here](/docs/oauth-20-connections).

| Input                | Comments                                                                                                                                                                          | Default                                    |
| -------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------ |
| Authorize URL        | The OAuth 2.0 Authorization URL for the API                                                                                                                                       | https://account-d.docusign.com/oauth/auth  |
| Token URL            | The OAuth 2.0 Token URL for the API                                                                                                                                               | https://account-d.docusign.com/oauth/token |
| Integration Key      | Integration Identifier of your app for the API                                                                                                                                    |                                            |
| Secret Key           | Secret Key of your app for the API                                                                                                                                                |                                            |
| Authorization Header | You must supply an Authorization header to get a token. Key input value should be 'Authorization' and Headers value should be 'Basic <base64 encoded integration_key:secret_key>' |                                            |
| Use Live Environment | Use the live DocuSign API environment                                                                                                                                             | false                                      |

## Triggers

### Account Level Trigger

Get notified when an event occurs at the account.

| Input         | Comments                                                                                                                                                                                                             | Default |
| ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connect Key   | This key is used to create the HMAC hash that DocuSign will send along with the message. Check https://developers.docusign.com/platform/webhooks/connect/setting-up-hmac/ for instructions on how to generate a key. |         |
| Connection    |                                                                                                                                                                                                                      |         |
| Webhook Event | The list of event types to subscribe to.                                                                                                                                                                             |         |

## Actions

### Create Account

Creates a new DocuSign account.

| Input                | Comments                                                                          | Default |
| -------------------- | --------------------------------------------------------------------------------- | ------- |
| Connection           |                                                                                   |         |
| Account Name         | The account name for the new account.                                             |         |
| User Name            | The name of the user.                                                             |         |
| First Name           | The user's first name. Maximum Length: 50 characters.                             |         |
| Last Name            | The user's last name. Maximum Length: 50 characters.                              |         |
| Middle Name          | The user's middle name. Maximum Length: 50 characters.                            |         |
| Address 1            | The first line of the address. Maximum length: 100 characters.                    |         |
| Address 2            | The second line of the address. Maximum length: 100 characters.                   |         |
| City                 | The city associated with the address. Maximum length: 40 characters.              |         |
| State                | The state or province associated with the address. Maximum length: 40 characters. |         |
| Country              | The country associated with the address. Maximum length: 50 characters.           |         |
| Postal Code          | The postal code associated with the address. Maximum length: 20 characters.       |         |
| Phone                | The phone number associated with the account.                                     |         |
| Company              | The name of the user's company.                                                   |         |
| Email                | The user's email address.                                                         |         |
| Fax                  | The fax number associated with the account.                                       |         |
| Included Seats       | The number of seats (users) included in the plan.                                 |         |
| Job Title            | The user's job title.                                                             |         |
| Plan ID              | DocuSign's ID for the account plan.                                               |         |
| Referral Code        | The referral code associated with the account.                                    |         |
| Referrer Name        | The name of the referrer.                                                         |         |
| Suffix Name          | The suffix for the user's name. Maximum Length: 50 characters.                    |         |
| Distributor Code     | The Distributor Code that you received from DocuSign.                             |         |
| Distributor Password | The password for the Distributor Code.                                            |         |

### Create Account Signature

Adds or updates one or more account stamps.

| Input      | Comments                                                                                                                                | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| ---------- | --------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection |                                                                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/accounts/accountsignatures/createaccountsignatures/ | <code>{<br /> "accountSignatures": [<br /> {<br /> "adoptedDateTime": "2023-12-31T20:28:11Z",<br /> "createdDateTime": "2023-12-31T20:28:11Z",<br /> "customField": "field",<br /> "dateStampProperties": {<br /> "dateAreaHeight": "256",<br /> "dateAreaWidth": "256",<br /> "dateAreaX": "256",<br /> "dateAreaY": "256"<br /> },<br /> "disallowUserResizeStamp": "true",<br /> "externalID": "12345",<br /> "imageType": "stamp_image",<br /> "initials150ImageId": "123",<br /> "initialsImageUri": "https://example.com/images/initials.jpg",<br /> "isDefault": "true",<br /> "phoneticName": "name",<br /> "signature150ImageId": "1234",<br /> "signatureFont": "1_DocuSign",<br /> "signatureId": "12345",<br /> "signatureImageUri": "https://example.com/images/signature.jpg",<br /> "signatureInitials": "JD",<br /> "signatureName": "John",<br /> "signatureRights": "read",<br /> "signatureType": "type",<br /> "signatureUsers": [<br /> {<br /> "isDefault": "true",<br /> "rights": "editable",<br /> "userId": "1234",<br /> "userName": "User"<br /> }<br /> ],<br /> "stampFormat": "NameHanko",<br /> "stampImageUri": "https://example.com/images/stamp.jpg",<br /> "stampSizeMM": "50",<br /> "stampType": "signature",<br /> "status": "sent",<br /> "imageBase64": "base64string"<br /> }<br /> ]<br />}</code> |

### Create Bulk Send List

This method creates a bulk send list that you can use to send an envelope to up to 1,000 recipients at once.

| Input      | Comments                                                                                                                       | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection |                                                                                                                                |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/bulkenvelopes/bulksend/createbulksendlist/ | <code>{<br /> "bulkCopies": [<br /> {<br /> "customFields": [<br /> {<br /> "name": "ProductType",<br /> "value": "Electronics"<br /> }<br /> ],<br /> "docGenFormFields": [<br /> {<br /> "name": "DocumentType",<br /> "value": "Invoice"<br /> }<br /> ],<br /> "emailBlurb": "Please review and sign the attached document.",<br /> "emailSubject": "Document Signature Request",<br /> "recipients": [<br /> {<br /> "accessCode": "1234",<br /> "clientUserId": "user123",<br /> "customFields": [<br /> "Customer123"<br /> ],<br /> "deliveryMethod": "email",<br /> "email": "john.doe@example.com",<br /> "emailNotification": {<br /> "emailBody": "Dear John, please review and sign the attached document.",<br /> "emailBodyMetadata": {<br /> "options": [<br /> "Format1",<br /> "Format2"<br /> ],<br /> "rights": "editable"<br /> },<br /> "emailSubject": "Signature Request",<br /> "emailSubjectMetadata": {<br /> "options": [<br /> "Urgent",<br /> "Normal"<br /> ],<br /> "rights": "editable"<br /> },<br /> "supportedLanguage": "English",<br /> "supportedLanguageMetadata": {<br /> "options": [<br /> "English",<br /> "Spanish"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "embeddedRecipientStartURL": "https://example.com/signing-start",<br /> "faxNumber": "+1234567890",<br /> "hostEmail": "host@example.com",<br /> "hostName": "Host Name",<br /> "idCheckConfigurationName": "StandardCheck",<br /> "idCheckInformationInput": {<br /> "addressInformationInput": {<br /> "addressInformation": {<br /> "address1": "123 Main Street",<br /> "address2": "Apt 456",<br /> "city": "Cityville",<br /> "country": "USA",<br /> "fax": "+1234567891",<br /> "phone": "+9876543210",<br /> "postalCode": "12345",<br /> "stateOrProvince": "CA",<br /> "zipPlus4": "6789"<br /> },<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true"<br /> },<br /> "dobInformationInput": {<br /> "dateOfBirth": "1980-01-01",<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true"<br /> },<br /> "ssn4InformationInput": {<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true",<br /> "ssn4": "5678"<br /> },<br /> "ssn9InformationInput": {<br /> "displayLevelCode": "ReadOnly",<br /> "ssn9": "123-45-6789"<br /> }<br /> },<br /> "identificationMethod": "GovernmentID",<br /> "identityVerification": {<br /> "workflowId": "IDVerificationWorkflow",<br /> "inputOptions": [<br /> {<br /> "name": "IDDocument",<br /> "valueType": "GovernmentID",<br /> "phoneNumberList": [<br /> {<br /> "countryCode": "1",<br /> "countryCodeLock": "1",<br /> "extension": "123",<br /> "number": "9876543210"<br /> }<br /> ]<br /> }<br /> ],<br /> "workflowIdMetadata": {<br /> "options": [<br /> "IDVerificationWorkflow"<br /> ],<br /> "rights": "editable"<br /> },<br /> "workflowLabel": "ID Verification"<br /> },<br /> "name": "John Doe",<br /> "note": "Please sign this document promptly.",<br /> "phoneAuthentication": {<br /> "recipMayProvideNumber": "true",<br /> "recipMayProvideNumberMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> },<br /> "recordVoicePrint": "true",<br /> "recordVoicePrintMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> },<br /> "senderProvidedNumbers": [<br /> "9876543210"<br /> ],<br /> "senderProvidedNumbersMetadata": {<br /> "options": [<br /> "9876543210"<br /> ],<br /> "rights": "editable"<br /> },<br /> "validateRecipProvidedNumber": "true",<br /> "validateRecipProvidedNumberMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "recipientId": "recipient123",<br /> "recipientSignatureProviders": [<br /> {<br /> "sealDocumentsWithTabsOnly": "No",<br /> "sealName": "SignatureSeal",<br /> "signatureProviderName": "eSignProvider",<br /> "signatureProviderNameMetadata": {<br /> "options": [<br /> "eSignProvider"<br /> ],<br /> "rights": "editable"<br /> },<br /> "signatureProviderOptions": {<br /> "cpfNumber": "9876543210",<br /> "cpfNumberMetadata": {<br /> "options": [<br /> "9876543210"<br /> ],<br /> "rights": "editable"<br /> },<br /> "oneTimePassword": "OTP123",<br /> "oneTimePasswordMetadata": {<br /> "options": [<br /> "OTP123"<br /> ],<br /> "rights": "editable"<br /> },<br /> "signerRole": "Manager",<br /> "signerRoleMetadata": {<br /> "options": [<br /> "AuthorizedSigner"<br /> ],<br /> "rights": "editable"<br /> },<br /> "sms": "+9876543210",<br /> "smsMetadata": {<br /> "options": [<br /> "+9876543210"<br /> ],<br /> "rights": "editable"<br /> }<br /> }<br /> }<br /> ],<br /> "roleName": "Signer",<br /> "signerName": "John Doe",<br /> "signingGroupId": "Group123",<br /> "smsAuthentication": {<br /> "senderProvidedNumbers": [<br /> "+9876543210"<br /> ],<br /> "senderProvidedNumbersMetadata": {<br /> "options": [<br /> "+9876543210"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "socialAuthentications": [<br /> {<br /> "authentication": "Facebook"<br /> }<br /> ],<br /> "tabs": [<br /> {<br /> "initialValue": "Sign Here",<br /> "tabLabel": "SignatureTab"<br /> }<br /> ]<br /> }<br /> ]<br /> }<br /> ],<br /> "listId": "List123",<br /> "name": "SignatureRequest123"<br />}</code> |

### Create Contact

This method adds multiple contacts into a contacts list.

| Input      | Comments                                                                                                   | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| ---------- | ---------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Connection |                                                                                                            |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/create/ | <code>{<br /> "contacts": [<br /> {<br /> "signingGroupUsers": [<br /> {<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "email": "sample string 3",<br /> "userType": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "loginStatus": "sample string 7",<br /> "sendActivationEmail": "sample string 8",<br /> "activationAccessCode": "sample string 9"<br /> }<br /> ],<br /> "contactId": "sample string 1",<br /> "name": "sample string 2",<br /> "emails": [<br /> "sample string 1"<br /> ],<br /> "organization": "sample string 3",<br /> "shared": "sample string 4",<br /> "contactUri": "sample string 5",<br /> "signingGroup": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "contactPhoneNumbers": [<br /> {<br /> "phoneNumber": "sample string 1",<br /> "phoneType": "sample string 2"<br /> }<br /> ]<br /> }<br /> ]<br />}</code> |

### Create Envelope

Creates and sends an envelope or creates a draft envelope.

| Input                | Comments                                                                                                                                                      | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection           |                                                                                                                                                               |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| JSON Input           | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/create/                                               | <code>{<br /> "documents": [<br /> {<br /> "documentBase64": "[Document content (PDF File)]",<br /> "documentId": "1",<br /> "fileExtension": "pdf",<br /> "name": "NDA.pdf"<br /> }<br /> ],<br /> "emailSubject": "Please sign the NDA",<br /> "recipients": {<br /> "signers": [<br /> {<br /> "email": "the_nda_signer@example.com",<br /> "name": "Darlene Petersen",<br /> "recipientId": "1",<br /> "routingOrder": "1",<br /> "tabs": {<br /> "dateSignedTabs": [<br /> {<br /> "anchorString": "signer1date",<br /> "anchorYOffset": "-6",<br /> "fontSize": "Size12",<br /> "name": "Date Signed",<br /> "recipientId": "1",<br /> "tabLabel": "date_signed"<br /> }<br /> ],<br /> "fullNameTabs": [<br /> {<br /> "anchorString": "signer1name",<br /> "anchorYOffset": "-6",<br /> "fontSize": "Size12",<br /> "name": "Full Name",<br /> "recipientId": "1",<br /> "tabLabel": "Full Name"<br /> }<br /> ],<br /> "signHereTabs": [<br /> {<br /> "anchorString": "signer1sig",<br /> "anchorUnits": "mms",<br /> "anchorXOffset": "0",<br /> "anchorYOffset": "0",<br /> "name": "Please sign here",<br /> "optional": "false",<br /> "recipientId": "1",<br /> "scaleValue": 1,<br /> "tabLabel": "signer1sig"<br /> }<br /> ]<br /> }<br /> }<br /> ]<br /> },<br /> "status": "sent"<br />}</code> |
| Change Routing Order | When true, allows defining the routing order of recipients while sending documents for signature.                                                             | false                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| Merge Roles On Draft | When true, template roles will be merged and empty recipients will be removed. This parameter applies when creating a draft envelope with multiple templates. | false                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |

### Create Template

Creates one or more template definitions, using a multipart request for each template.

| Input      | Comments                                                                                                        | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| ---------- | --------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection |                                                                                                                 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/templates/templates/create/ | <code>{<br /> "templateId": "sample string 1",<br /> "name": "sample string 2",<br /> "shared": "sample string 3",<br /> "password": "sample string 4",<br /> "newPassword": "sample string 5",<br /> "description": "sample string 6",<br /> "created": "sample string 7",<br /> "lastModified": "sample string 8",<br /> "lastModifiedBy": {<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "email": "sample string 3",<br /> "userType": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "loginStatus": "sample string 7",<br /> "sendActivationEmail": "sample string 8",<br /> "activationAccessCode": "sample string 9"<br /> },<br /> "pageCount": 9,<br /> "uri": "sample string 10",<br /> "folderName": "sample string 11",<br /> "folderId": "sample string 12",<br /> "folderUri": "sample string 13",<br /> "parentFolderUri": "sample string 14",<br /> "owner": {},<br /> "documents": [<br /> {<br /> "documentId": "sample string 1",<br /> "uri": "sample string 2",<br /> "remoteUrl": "sample string 3",<br /> "name": "sample string 4",<br /> "password": "sample string 5",<br /> "transformPdfFields": "sample string 6",<br /> "fileExtension": "sample string 7",<br /> "matchBoxes": [<br /> {<br /> "pageNumber": 1,<br /> "xPosition": 2,<br /> "yPosition": 3,<br /> "width": 4,<br /> "height": 5<br /> }<br /> ],<br /> "order": "sample string 8",<br /> "pages": "sample string 9",<br /> "documentFields": [<br /> {}<br /> ],<br /> "encryptedWithKeyManager": "sample string 10",<br /> "documentBase64": "sample string 11",<br /> "applyAnchorTabs": "sample string 12",<br /> "display": "sample string 13",<br /> "includeInDownload": "sample string 14",<br /> "signerMustAcknowledge": "sample string 15",<br /> "templateLocked": "sample string 16",<br /> "templateRequired": "sample string 17",<br /> "fileFormatHint": "sample string 18",<br /> "htmlDefinition": {<br /> "documentId": "sample string 1",<br /> "documentGuid": "sample string 2",<br /> "source": "sample string 3",<br /> "displayAnchors": [<br /> {<br /> "startAnchor": "sample string 1",<br /> "endAnchor": "sample string 2",<br /> "removeStartAnchor": true,<br /> "removeEndAnchor": true,<br /> "caseSensitive": true,<br /> "displaySettings": {<br /> "displayLabel": "sample string 1",<br /> "display": "sample string 2",<br /> "displayPageNumber": 3,<br /> "displayOrder": 4,<br /> "tableStyle": "sample string 5",<br /> "cellStyle": "sample string 6",<br /> "inlineOuterStyle": "sample string 7",<br /> "hideLabelWhenOpened": true,<br /> "scrollToTopWhenOpened": true,<br /> "preLabel": "sample string 10",<br /> "labelWhenOpened": "sample string 11",<br /> "collapsibleSettings": {<br /> "containerStyle": "sample string 1",<br /> "outerLabelAndArrowStyle": "sample string 2",<br /> "labelStyle": "sample string 3",<br /> "arrowStyle": "sample string 4",<br /> "arrowClosed": "sample string 5",<br /> "arrowOpen": "sample string 6",<br /> "arrowLocation": "sample string 7",<br /> "arrowColor": "sample string 8",<br /> "arrowSize": "sample string 9",<br /> "onlyArrowIsClickable": true<br /> }<br /> }<br /> }<br /> ],<br /> "removeEmptyTags": "sample string 4",<br /> "headerLabel": "sample string 5",<br /> "displayAnchorPrefix": "sample string 6",<br /> "maxScreenWidth": "sample string 7",<br /> "displayPageNumber": "sample string 8",<br /> "displayOrder": "sample string 9",<br /> "showMobileOptimizedToggle": "sample string 10"<br /> },<br /> "authoritativeCopy": true<br /> }<br /> ],<br /> "transactionId": "sample string 1",<br /> "status": "sample string 2",<br /> "documentsUri": "sample string 3",<br /> "recipientsUri": "sample string 4",<br /> "attachmentsUri": "sample string 5",<br /> "asynchronous": "sample string 6",<br /> "envelopeUri": "sample string 7",<br /> "emailSubject": "sample string 8",<br /> "emailBlurb": "sample string 9",<br /> "envelopeId": "sample string 10",<br /> "signingLocation": "sample string 11",<br /> "customFieldsUri": "sample string 12",<br /> "customFields": {<br /> "textCustomFields": [<br /> {<br /> "fieldId": "sample string 1",<br /> "name": "sample string 2",<br /> "show": "sample string 3",<br /> "required": "sample string 4",<br /> "value": "sample string 5",<br /> "configurationType": "sample string 6"<br /> }<br /> ],<br /> "listCustomFields": [<br /> {<br /> "listItems": [<br /> "sample string 1"<br /> ],<br /> "fieldId": "sample string 1",<br /> "name": "sample string 2",<br /> "show": "sample string 3",<br /> "required": "sample string 4",<br /> "value": "sample string 5",<br /> "configurationType": "sample string 6"<br /> }<br /> ]<br /> },<br /> "autoNavigation": "sample string 13",<br /> "envelopeIdStamping": "sample string 14",<br /> "authoritativeCopy": "sample string 15",<br /> "authoritativeCopyDefault": "sample string 16",<br /> "notification": {<br /> "useAccountDefaults": "sample string 1",<br /> "reminders": {<br /> "reminderEnabled": "sample string 1",<br /> "reminderDelay": "sample string 2",<br /> "reminderFrequency": "sample string 3"<br /> },<br /> "expirations": {<br /> "expireEnabled": "sample string 1",<br /> "expireAfter": "sample string 2",<br /> "expireWarn": "sample string 3"<br /> }<br /> },<br /> "notificationUri": "sample string 17",<br /> "enforceSignerVisibility": "sample string 18",<br /> "enableWetSign": "sample string 19",<br /> "allowMarkup": "sample string 20",<br /> "allowReassign": "sample string 21",<br /> "createdDateTime": "sample string 22",<br /> "lastModifiedDateTime": "sample string 23",<br /> "deliveredDateTime": "sample string 24",<br /> "initialSentDateTime": "sample string 25",<br /> "sentDateTime": "sample string 26",<br /> "completedDateTime": "sample string 27",<br /> "voidedDateTime": "sample string 28",<br /> "voidedReason": "sample string 29",<br /> "deletedDateTime": "sample string 30",<br /> "declinedDateTime": "sample string 31",<br /> "statusChangedDateTime": "sample string 32",<br /> "documentsCombinedUri": "sample string 33",<br /> "certificateUri": "sample string 34",<br /> "templatesUri": "sample string 35",<br /> "messageLock": "sample string 36",<br /> "recipientsLock": "sample string 37",<br /> "recipients": {<br /> "signers": [<br /> {<br /> "signatureInfo": {<br /> "signatureName": "sample string 1",<br /> "signatureInitials": "sample string 2",<br /> "fontStyle": "sample string 3"<br /> },<br /> "autoNavigation": "sample string 1",<br /> "defaultRecipient": "sample string 2",<br /> "tabs": {<br /> "signHereTabs": [<br /> {<br /> "stampType": "sample string 1",<br /> "name": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 4",<br /> "documentId": "sample string 5",<br /> "recipientId": "sample string 6",<br /> "pageNumber": "sample string 7",<br /> "xPosition": "sample string 8",<br /> "yPosition": "sample string 9",<br /> "anchorString": "sample string 10",<br /> "anchorXOffset": "sample string 11",<br /> "anchorYOffset": "sample string 12",<br /> "anchorUnits": "sample string 13",<br /> "anchorIgnoreIfNotPresent": "sample string 14",<br /> "anchorCaseSensitive": "sample string 15",<br /> "anchorMatchWholeWord": "sample string 16",<br /> "anchorHorizontalAlignment": "sample string 17",<br /> "tabId": "sample string 18",<br /> "templateLocked": "sample string 19",<br /> "templateRequired": "sample string 20",<br /> "conditionalParentLabel": "sample string 21",<br /> "conditionalParentValue": "sample string 22",<br /> "customTabId": "sample string 23",<br /> "mergeField": {<br /> "configurationType": "sample string 1",<br /> "path": "sample string 2",<br /> "writeBack": "sample string 3",<br /> "allowSenderToEdit": "sample string 4",<br /> "row": "sample string 5"<br /> },<br /> "tooltip": "sample string 24",<br /> "tabOrder": "sample string 25",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "initialHereTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 3",<br /> "documentId": "sample string 4",<br /> "recipientId": "sample string 5",<br /> "pageNumber": "sample string 6",<br /> "xPosition": "sample string 7",<br /> "yPosition": "sample string 8",<br /> "anchorString": "sample string 9",<br /> "anchorXOffset": "sample string 10",<br /> "anchorYOffset": "sample string 11",<br /> "anchorUnits": "sample string 12",<br /> "anchorIgnoreIfNotPresent": "sample string 13",<br /> "anchorCaseSensitive": "sample string 14",<br /> "anchorMatchWholeWord": "sample string 15",<br /> "anchorHorizontalAlignment": "sample string 16",<br /> "tabId": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "conditionalParentLabel": "sample string 20",<br /> "conditionalParentValue": "sample string 21",<br /> "customTabId": "sample string 22",<br /> "mergeField": {},<br /> "tooltip": "sample string 23",<br /> "tabOrder": "sample string 24",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "signerAttachmentTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 3",<br /> "documentId": "sample string 4",<br /> "recipientId": "sample string 5",<br /> "pageNumber": "sample string 6",<br /> "xPosition": "sample string 7",<br /> "yPosition": "sample string 8",<br /> "anchorString": "sample string 9",<br /> "anchorXOffset": "sample string 10",<br /> "anchorYOffset": "sample string 11",<br /> "anchorUnits": "sample string 12",<br /> "anchorIgnoreIfNotPresent": "sample string 13",<br /> "anchorCaseSensitive": "sample string 14",<br /> "anchorMatchWholeWord": "sample string 15",<br /> "anchorHorizontalAlignment": "sample string 16",<br /> "tabId": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "conditionalParentLabel": "sample string 20",<br /> "conditionalParentValue": "sample string 21",<br /> "customTabId": "sample string 22",<br /> "mergeField": {},<br /> "tooltip": "sample string 23",<br /> "tabOrder": "sample string 24",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "approveTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "tabLabel": "sample string 4",<br /> "font": "sample string 5",<br /> "bold": "sample string 6",<br /> "italic": "sample string 7",<br /> "underline": "sample string 8",<br /> "fontColor": "sample string 9",<br /> "fontSize": "sample string 10",<br /> "documentId": "sample string 11",<br /> "recipientId": "sample string 12",<br /> "pageNumber": "sample string 13",<br /> "xPosition": "sample string 14",<br /> "yPosition": "sample string 15",<br /> "anchorString": "sample string 16",<br /> "anchorXOffset": "sample string 17",<br /> "anchorYOffset": "sample string 18",<br /> "anchorUnits": "sample string 19",<br /> "anchorIgnoreIfNotPresent": "sample string 20",<br /> "anchorCaseSensitive": "sample string 21",<br /> "anchorMatchWholeWord": "sample string 22",<br /> "anchorHorizontalAlignment": "sample string 23",<br /> "tabId": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "conditionalParentLabel": "sample string 27",<br /> "conditionalParentValue": "sample string 28",<br /> "customTabId": "sample string 29",<br /> "mergeField": {},<br /> "tooltip": "sample string 30",<br /> "tabOrder": "sample string 31",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "declineTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "declineReason": "sample string 4",<br /> "tabLabel": "sample string 5",<br /> "font": "sample string 6",<br /> "bold": "sample string 7",<br /> "italic": "sample string 8",<br /> "underline": "sample string 9",<br /> "fontColor": "sample string 10",<br /> "fontSize": "sample string 11",<br /> "documentId": "sample string 12",<br /> "recipientId": "sample string 13",<br /> "pageNumber": "sample string 14",<br /> "xPosition": "sample string 15",<br /> "yPosition": "sample string 16",<br /> "anchorString": "sample string 17",<br /> "anchorXOffset": "sample string 18",<br /> "anchorYOffset": "sample string 19",<br /> "anchorUnits": "sample string 20",<br /> "anchorIgnoreIfNotPresent": "sample string 21",<br /> "anchorCaseSensitive": "sample string 22",<br /> "anchorMatchWholeWord": "sample string 23",<br /> "anchorHorizontalAlignment": "sample string 24",<br /> "tabId": "sample string 25",<br /> "templateLocked": "sample string 26",<br /> "templateRequired": "sample string 27",<br /> "conditionalParentLabel": "sample string 28",<br /> "conditionalParentValue": "sample string 29",<br /> "customTabId": "sample string 30",<br /> "mergeField": {},<br /> "tooltip": "sample string 31",<br /> "tabOrder": "sample string 32",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "viewTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "required": "sample string 4",<br /> "requiredRead": "sample string 5",<br /> "tabLabel": "sample string 6",<br /> "font": "sample string 7",<br /> "bold": "sample string 8",<br /> "italic": "sample string 9",<br /> "underline": "sample string 10",<br /> "fontColor": "sample string 11",<br /> "fontSize": "sample string 12",<br /> "documentId": "sample string 13",<br /> "recipientId": "sample string 14",<br /> "pageNumber": "sample string 15",<br /> "xPosition": "sample string 16",<br /> "yPosition": "sample string 17",<br /> "anchorString": "sample string 18",<br /> "anchorXOffset": "sample string 19",<br /> "anchorYOffset": "sample string 20",<br /> "anchorUnits": "sample string 21",<br /> "anchorIgnoreIfNotPresent": "sample string 22",<br /> "anchorCaseSensitive": "sample string 23",<br /> "anchorMatchWholeWord": "sample string 24",<br /> "anchorHorizontalAlignment": "sample string 25",<br /> "tabId": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "conditionalParentLabel": "sample string 29",<br /> "conditionalParentValue": "sample string 30",<br /> "customTabId": "sample string 31",<br /> "mergeField": {},<br /> "tooltip": "sample string 32",<br /> "tabOrder": "sample string 33",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "fullNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "dateSignedTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "envelopeIdTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "font": "sample string 3",<br /> "bold": "sample string 4",<br /> "italic": "sample string 5",<br /> "underline": "sample string 6",<br /> "fontColor": "sample string 7",<br /> "fontSize": "sample string 8",<br /> "documentId": "sample string 9",<br /> "recipientId": "sample string 10",<br /> "pageNumber": "sample string 11",<br /> "xPosition": "sample string 12",<br /> "yPosition": "sample string 13",<br /> "anchorString": "sample string 14",<br /> "anchorXOffset": "sample string 15",<br /> "anchorYOffset": "sample string 16",<br /> "anchorUnits": "sample string 17",<br /> "anchorIgnoreIfNotPresent": "sample string 18",<br /> "anchorCaseSensitive": "sample string 19",<br /> "anchorMatchWholeWord": "sample string 20",<br /> "anchorHorizontalAlignment": "sample string 21",<br /> "tabId": "sample string 22",<br /> "templateLocked": "sample string 23",<br /> "templateRequired": "sample string 24",<br /> "conditionalParentLabel": "sample string 25",<br /> "conditionalParentValue": "sample string 26",<br /> "customTabId": "sample string 27",<br /> "mergeField": {},<br /> "tooltip": "sample string 28",<br /> "tabOrder": "sample string 29",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "companyTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3",<br /> "width": 4,<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "concealValueOnDocument": "sample string 7",<br /> "disableAutoSize": "sample string 8",<br /> "maxLength": 9,<br /> "tabLabel": "sample string 10",<br /> "font": "sample string 11",<br /> "bold": "sample string 12",<br /> "italic": "sample string 13",<br /> "underline": "sample string 14",<br /> "fontColor": "sample string 15",<br /> "fontSize": "sample string 16",<br /> "documentId": "sample string 17",<br /> "recipientId": "sample string 18",<br /> "pageNumber": "sample string 19",<br /> "xPosition": "sample string 20",<br /> "yPosition": "sample string 21",<br /> "anchorString": "sample string 22",<br /> "anchorXOffset": "sample string 23",<br /> "anchorYOffset": "sample string 24",<br /> "anchorUnits": "sample string 25",<br /> "anchorIgnoreIfNotPresent": "sample string 26",<br /> "anchorCaseSensitive": "sample string 27",<br /> "anchorMatchWholeWord": "sample string 28",<br /> "anchorHorizontalAlignment": "sample string 29",<br /> "tabId": "sample string 30",<br /> "templateLocked": "sample string 31",<br /> "templateRequired": "sample string 32",<br /> "conditionalParentLabel": "sample string 33",<br /> "conditionalParentValue": "sample string 34",<br /> "customTabId": "sample string 35",<br /> "mergeField": {},<br /> "tooltip": "sample string 36",<br /> "tabOrder": "sample string 37",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "titleTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3",<br /> "width": 4,<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "concealValueOnDocument": "sample string 7",<br /> "disableAutoSize": "sample string 8",<br /> "maxLength": 9,<br /> "tabLabel": "sample string 10",<br /> "font": "sample string 11",<br /> "bold": "sample string 12",<br /> "italic": "sample string 13",<br /> "underline": "sample string 14",<br /> "fontColor": "sample string 15",<br /> "fontSize": "sample string 16",<br /> "documentId": "sample string 17",<br /> "recipientId": "sample string 18",<br /> "pageNumber": "sample string 19",<br /> "xPosition": "sample string 20",<br /> "yPosition": "sample string 21",<br /> "anchorString": "sample string 22",<br /> "anchorXOffset": "sample string 23",<br /> "anchorYOffset": "sample string 24",<br /> "anchorUnits": "sample string 25",<br /> "anchorIgnoreIfNotPresent": "sample string 26",<br /> "anchorCaseSensitive": "sample string 27",<br /> "anchorMatchWholeWord": "sample string 28",<br /> "anchorHorizontalAlignment": "sample string 29",<br /> "tabId": "sample string 30",<br /> "templateLocked": "sample string 31",<br /> "templateRequired": "sample string 32",<br /> "conditionalParentLabel": "sample string 33",<br /> "conditionalParentValue": "sample string 34",<br /> "customTabId": "sample string 35",<br /> "mergeField": {},<br /> "tooltip": "sample string 36",<br /> "tabOrder": "sample string 37",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "textTabs": [<br /> {<br /> "height": 1,<br /> "isPaymentAmount": "sample string 2",<br /> "formula": "sample string 3",<br /> "validationPattern": "sample string 4",<br /> "validationMessage": "sample string 5",<br /> "shared": "sample string 6",<br /> "requireInitialOnSharedChange": "sample string 7",<br /> "senderRequired": "sample string 8",<br /> "requireAll": "sample string 9",<br /> "name": "sample string 10",<br /> "value": "sample string 11",<br /> "originalValue": "sample string 12",<br /> "width": 13,<br /> "required": "sample string 14",<br /> "locked": "sample string 15",<br /> "concealValueOnDocument": "sample string 16",<br /> "disableAutoSize": "sample string 17",<br /> "maxLength": 18,<br /> "tabLabel": "sample string 19",<br /> "font": "sample string 20",<br /> "bold": "sample string 21",<br /> "italic": "sample string 22",<br /> "underline": "sample string 23",<br /> "fontColor": "sample string 24",<br /> "fontSize": "sample string 25",<br /> "documentId": "sample string 26",<br /> "recipientId": "sample string 27",<br /> "pageNumber": "sample string 28",<br /> "xPosition": "sample string 29",<br /> "yPosition": "sample string 30",<br /> "anchorString": "sample string 31",<br /> "anchorXOffset": "sample string 32",<br /> "anchorYOffset": "sample string 33",<br /> "anchorUnits": "sample string 34",<br /> "anchorIgnoreIfNotPresent": "sample string 35",<br /> "anchorCaseSensitive": "sample string 36",<br /> "anchorMatchWholeWord": "sample string 37",<br /> "anchorHorizontalAlignment": "sample string 38",<br /> "tabId": "sample string 39",<br /> "templateLocked": "sample string 40",<br /> "templateRequired": "sample string 41",<br /> "conditionalParentLabel": "sample string 42",<br /> "conditionalParentValue": "sample string 43",<br /> "customTabId": "sample string 44",<br /> "mergeField": {},<br /> "tooltip": "sample string 45",<br /> "tabOrder": "sample string 46",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "numberTabs": [<br /> {<br /> "isPaymentAmount": "sample string 1",<br /> "formula": "sample string 2",<br /> "validationPattern": "sample string 3",<br /> "validationMessage": "sample string 4",<br /> "shared": "sample string 5",<br /> "requireInitialOnSharedChange": "sample string 6",<br /> "senderRequired": "sample string 7",<br /> "requireAll": "sample string 8",<br /> "name": "sample string 9",<br /> "value": "sample string 10",<br /> "originalValue": "sample string 11",<br /> "width": 12,<br /> "required": "sample string 13",<br /> "locked": "sample string 14",<br /> "concealValueOnDocument": "sample string 15",<br /> "disableAutoSize": "sample string 16",<br /> "maxLength": 17,<br /> "tabLabel": "sample string 18",<br /> "font": "sample string 19",<br /> "bold": "sample string 20",<br /> "italic": "sample string 21",<br /> "underline": "sample string 22",<br /> "fontColor": "sample string 23",<br /> "fontSize": "sample string 24",<br /> "documentId": "sample string 25",<br /> "recipientId": "sample string 26",<br /> "pageNumber": "sample string 27",<br /> "xPosition": "sample string 28",<br /> "yPosition": "sample string 29",<br /> "anchorString": "sample string 30",<br /> "anchorXOffset": "sample string 31",<br /> "anchorYOffset": "sample string 32",<br /> "anchorUnits": "sample string 33",<br /> "anchorIgnoreIfNotPresent": "sample string 34",<br /> "anchorCaseSensitive": "sample string 35",<br /> "anchorMatchWholeWord": "sample string 36",<br /> "anchorHorizontalAlignment": "sample string 37",<br /> "tabId": "sample string 38",<br /> "templateLocked": "sample string 39",<br /> "templateRequired": "sample string 40",<br /> "conditionalParentLabel": "sample string 41",<br /> "conditionalParentValue": "sample string 42",<br /> "customTabId": "sample string 43",<br /> "mergeField": {},<br /> "tooltip": "sample string 44",<br /> "tabOrder": "sample string 45",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "ssnTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "dateTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "zipTabs": [<br /> {<br /> "useDash4": "sample string 1",<br /> "validationPattern": "sample string 2",<br /> "validationMessage": "sample string 3",<br /> "shared": "sample string 4",<br /> "requireInitialOnSharedChange": "sample string 5",<br /> "senderRequired": "sample string 6",<br /> "requireAll": "sample string 7",<br /> "name": "sample string 8",<br /> "value": "sample string 9",<br /> "originalValue": "sample string 10",<br /> "width": 11,<br /> "required": "sample string 12",<br /> "locked": "sample string 13",<br /> "concealValueOnDocument": "sample string 14",<br /> "disableAutoSize": "sample string 15",<br /> "maxLength": 16,<br /> "tabLabel": "sample string 17",<br /> "font": "sample string 18",<br /> "bold": "sample string 19",<br /> "italic": "sample string 20",<br /> "underline": "sample string 21",<br /> "fontColor": "sample string 22",<br /> "fontSize": "sample string 23",<br /> "documentId": "sample string 24",<br /> "recipientId": "sample string 25",<br /> "pageNumber": "sample string 26",<br /> "xPosition": "sample string 27",<br /> "yPosition": "sample string 28",<br /> "anchorString": "sample string 29",<br /> "anchorXOffset": "sample string 30",<br /> "anchorYOffset": "sample string 31",<br /> "anchorUnits": "sample string 32",<br /> "anchorIgnoreIfNotPresent": "sample string 33",<br /> "anchorCaseSensitive": "sample string 34",<br /> "anchorMatchWholeWord": "sample string 35",<br /> "anchorHorizontalAlignment": "sample string 36",<br /> "tabId": "sample string 37",<br /> "templateLocked": "sample string 38",<br /> "templateRequired": "sample string 39",<br /> "conditionalParentLabel": "sample string 40",<br /> "conditionalParentValue": "sample string 41",<br /> "customTabId": "sample string 42",<br /> "mergeField": {},<br /> "tooltip": "sample string 43",<br /> "tabOrder": "sample string 44",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "emailTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "noteTabs": [<br /> {<br /> "width": 1,<br /> "height": 2,<br /> "shared": "sample string 3",<br /> "value": "sample string 4",<br /> "name": "sample string 5",<br /> "tabLabel": "sample string 6",<br /> "font": "sample string 7",<br /> "bold": "sample string 8",<br /> "italic": "sample string 9",<br /> "underline": "sample string 10",<br /> "fontColor": "sample string 11",<br /> "fontSize": "sample string 12",<br /> "documentId": "sample string 13",<br /> "recipientId": "sample string 14",<br /> "pageNumber": "sample string 15",<br /> "xPosition": "sample string 16",<br /> "yPosition": "sample string 17",<br /> "anchorString": "sample string 18",<br /> "anchorXOffset": "sample string 19",<br /> "anchorYOffset": "sample string 20",<br /> "anchorUnits": "sample string 21",<br /> "anchorIgnoreIfNotPresent": "sample string 22",<br /> "anchorCaseSensitive": "sample string 23",<br /> "anchorMatchWholeWord": "sample string 24",<br /> "anchorHorizontalAlignment": "sample string 25",<br /> "tabId": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "conditionalParentLabel": "sample string 29",<br /> "conditionalParentValue": "sample string 30",<br /> "customTabId": "sample string 31",<br /> "mergeField": {},<br /> "tooltip": "sample string 32",<br /> "tabOrder": "sample string 33",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "checkboxTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "selected": "sample string 3",<br /> "shared": "sample string 4",<br /> "requireInitialOnSharedChange": "sample string 5",<br /> "required": "sample string 6",<br /> "locked": "sample string 7",<br /> "documentId": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "pageNumber": "sample string 10",<br /> "xPosition": "sample string 11",<br /> "yPosition": "sample string 12",<br /> "anchorString": "sample string 13",<br /> "anchorXOffset": "sample string 14",<br /> "anchorYOffset": "sample string 15",<br /> "anchorUnits": "sample string 16",<br /> "anchorIgnoreIfNotPresent": "sample string 17",<br /> "anchorCaseSensitive": "sample string 18",<br /> "anchorMatchWholeWord": "sample string 19",<br /> "anchorHorizontalAlignment": "sample string 20",<br /> "tabId": "sample string 21",<br /> "templateLocked": "sample string 22",<br /> "templateRequired": "sample string 23",<br /> "conditionalParentLabel": "sample string 24",<br /> "conditionalParentValue": "sample string 25",<br /> "customTabId": "sample string 26",<br /> "mergeField": {},<br /> "tooltip": "sample string 27",<br /> "tabOrder": "sample string 28",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "radioGroupTabs": [<br /> {<br /> "documentId": "sample string 1",<br /> "recipientId": "sample string 2",<br /> "templateLocked": "sample string 3",<br /> "templateRequired": "sample string 4",<br /> "conditionalParentLabel": "sample string 5",<br /> "conditionalParentValue": "sample string 6",<br /> "groupName": "sample string 7",<br /> "radios": [<br /> {<br /> "pageNumber": "sample string 1",<br /> "xPosition": "sample string 2",<br /> "yPosition": "sample string 3",<br /> "anchorString": "sample string 4",<br /> "anchorXOffset": "sample string 5",<br /> "anchorYOffset": "sample string 6",<br /> "anchorUnits": "sample string 7",<br /> "anchorIgnoreIfNotPresent": "sample string 8",<br /> "anchorCaseSensitive": "sample string 9",<br /> "anchorMatchWholeWord": "sample string 10",<br /> "anchorHorizontalAlignment": "sample string 11",<br /> "value": "sample string 12",<br /> "selected": "sample string 13",<br /> "tabId": "sample string 14",<br /> "required": "sample string 15",<br /> "locked": "sample string 16",<br /> "tabOrder": "sample string 17"<br /> }<br /> ],<br /> "shared": "sample string 8",<br /> "requireInitialOnSharedChange": "sample string 9",<br /> "requireAll": "sample string 10",<br /> "tooltip": "sample string 11"<br /> }<br /> ],<br /> "listTabs": [<br /> {<br /> "listItems": [<br /> {<br /> "text": "sample string 1",<br /> "value": "sample string 2",<br /> "selected": "sample string 3"<br /> }<br /> ],<br /> "value": "sample string 1",<br /> "width": 2,<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "senderRequired": "sample string 7",<br /> "requireAll": "sample string 8",<br /> "tabLabel": "sample string 9",<br /> "font": "sample string 10",<br /> "bold": "sample string 11",<br /> "italic": "sample string 12",<br /> "underline": "sample string 13",<br /> "fontColor": "sample string 14",<br /> "fontSize": "sample string 15",<br /> "documentId": "sample string 16",<br /> "recipientId": "sample string 17",<br /> "pageNumber": "sample string 18",<br /> "xPosition": "sample string 19",<br /> "yPosition": "sample string 20",<br /> "anchorString": "sample string 21",<br /> "anchorXOffset": "sample string 22",<br /> "anchorYOffset": "sample string 23",<br /> "anchorUnits": "sample string 24",<br /> "anchorIgnoreIfNotPresent": "sample string 25",<br /> "anchorCaseSensitive": "sample string 26",<br /> "anchorMatchWholeWord": "sample string 27",<br /> "anchorHorizontalAlignment": "sample string 28",<br /> "tabId": "sample string 29",<br /> "templateLocked": "sample string 30",<br /> "templateRequired": "sample string 31",<br /> "conditionalParentLabel": "sample string 32",<br /> "conditionalParentValue": "sample string 33",<br /> "customTabId": "sample string 34",<br /> "mergeField": {},<br /> "tooltip": "sample string 35",<br /> "tabOrder": "sample string 36",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "firstNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "lastNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "emailAddressTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "formulaTabs": [<br /> {<br /> "isPaymentAmount": "sample string 1",<br /> "formula": "sample string 2",<br /> "roundDecimalPlaces": "sample string 3",<br /> "paymentDetails": {<br /> "total": {<br /> "amountInBaseUnit": "sample string 1",<br /> "currency": "sample string 2",<br /> "displayAmount": "sample string 3"<br /> },<br /> "status": "sample string 1",<br /> "currencyCode": "sample string 2",<br /> "lineItems": [<br /> {<br /> "name": "sample string 1",<br /> "description": "sample string 2",<br /> "itemCode": "sample string 3",<br /> "amountReference": "sample string 4"<br /> }<br /> ],<br /> "allowedPaymentMethods": [<br /> "sample string 1"<br /> ],<br /> "gatewayAccountId": "sample string 3",<br /> "gatewayName": "sample string 4",<br /> "gatewayDisplayName": "sample string 5",<br /> "chargeId": "sample string 6",<br /> "paymentOption": "sample string 7",<br /> "customMetadataRequired": true,<br /> "customMetadata": "sample string 9",<br /> "customerId": "sample string 10",<br /> "paymentSourceId": "sample string 11",<br /> "signerValues": {<br /> "paymentOption": "sample string 1"<br /> },<br /> "subGatewayName": "sample string 12"<br /> },<br /> "hidden": "sample string 4",<br /> "validationPattern": "sample string 5",<br /> "validationMessage": "sample string 6",<br /> "shared": "sample string 7",<br /> "requireInitialOnSharedChange": "sample string 8",<br /> "senderRequired": "sample string 9",<br /> "requireAll": "sample string 10",<br /> "name": "sample string 11",<br /> "value": "sample string 12",<br /> "originalValue": "sample string 13",<br /> "width": 14,<br /> "required": "sample string 15",<br /> "locked": "sample string 16",<br /> "concealValueOnDocument": "sample string 17",<br /> "disableAutoSize": "sample string 18",<br /> "maxLength": 19,<br /> "tabLabel": "sample string 20",<br /> "font": "sample string 21",<br /> "bold": "sample string 22",<br /> "italic": "sample string 23",<br /> "underline": "sample string 24",<br /> "fontColor": "sample string 25",<br /> "fontSize": "sample string 26",<br /> "documentId": "sample string 27",<br /> "recipientId": "sample string 28",<br /> "pageNumber": "sample string 29",<br /> "xPosition": "sample string 30",<br /> "yPosition": "sample string 31",<br /> "anchorString": "sample string 32",<br /> "anchorXOffset": "sample string 33",<br /> "anchorYOffset": "sample string 34",<br /> "anchorUnits": "sample string 35",<br /> "anchorIgnoreIfNotPresent": "sample string 36",<br /> "anchorCaseSensitive": "sample string 37",<br /> "anchorMatchWholeWord": "sample string 38",<br /> "anchorHorizontalAlignment": "sample string 39",<br /> "tabId": "sample string 40",<br /> "templateLocked": "sample string 41",<br /> "templateRequired": "sample string 42",<br /> "conditionalParentLabel": "sample string 43",<br /> "conditionalParentValue": "sample string 44",<br /> "customTabId": "sample string 45",<br /> "mergeField": {},<br /> "tooltip": "sample string 46",<br /> "tabOrder": "sample string 47",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "notarizeTabs": [<br /> {<br /> "required": "sample string 1",<br /> "locked": "sample string 2",<br /> "documentId": "sample string 3",<br /> "recipientId": "sample string 4",<br /> "pageNumber": "sample string 5",<br /> "xPosition": "sample string 6",<br /> "yPosition": "sample string 7",<br /> "anchorString": "sample string 8",<br /> "anchorXOffset": "sample string 9",<br /> "anchorYOffset": "sample string 10",<br /> "anchorUnits": "sample string 11",<br /> "anchorIgnoreIfNotPresent": "sample string 12",<br /> "anchorCaseSensitive": "sample string 13",<br /> "anchorMatchWholeWord": "sample string 14",<br /> "anchorHorizontalAlignment": "sample string 15",<br /> "tabId": "sample string 16",<br /> "templateLocked": "sample string 17",<br /> "templateRequired": "sample string 18",<br /> "conditionalParentLabel": "sample string 19",<br /> "conditionalParentValue": "sample string 20",<br /> "customTabId": "sample string 21",<br /> "mergeField": {},<br /> "tooltip": "sample string 22",<br /> "tabOrder": "sample string 23",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "smartSectionTabs": [<br /> {<br /> "startAnchor": "sample string 1",<br /> "endAnchor": "sample string 2",<br /> "removeStartAnchor": true,<br /> "removeEndAnchor": true,<br /> "caseSensitive": true,<br /> "startPosition": {<br /> "xPosition": 1.1,<br /> "yPosition": 2.1,<br /> "pageNumber": 3<br /> },<br /> "endPosition": {<br /> "xPosition": 0,<br /> "yPosition": 0<br /> },<br /> "displaySettings": {<br /> "displayLabel": "sample string 1",<br /> "display": "sample string 2",<br /> "displayPageNumber": 3,<br /> "displayOrder": 4,<br /> "tableStyle": "sample string 5",<br /> "cellStyle": "sample string 6",<br /> "inlineOuterStyle": "sample string 7",<br /> "hideLabelWhenOpened": true,<br /> "scrollToTopWhenOpened": true,<br /> "labelWhenOpened": "sample string 10",<br /> "preLabel": "sample string 11",<br /> "collapsibleSettings": {<br /> "containerStyle": "sample string 1",<br /> "outerLabelAndArrowStyle": "sample string 2",<br /> "labelStyle": "sample string 3",<br /> "arrowStyle": "sample string 4",<br /> "arrowClosed": "sample string 5",<br /> "arrowOpen": "sample string 6",<br /> "arrowLocation": "sample string 7",<br /> "arrowColor": "sample string 8",<br /> "arrowSize": "sample string 9",<br /> "onlyArrowIsClickable": true<br /> }<br /> },<br /> "documentId": "sample string 6",<br /> "recipientId": "sample string 7",<br /> "pageNumber": "sample string 8",<br /> "xPosition": "sample string 9",<br /> "yPosition": "sample string 10",<br /> "anchorString": "sample string 11",<br /> "anchorXOffset": "sample string 12",<br /> "anchorYOffset": "sample string 13",<br /> "anchorUnits": "sample string 14",<br /> "anchorIgnoreIfNotPresent": "sample string 15",<br /> "anchorCaseSensitive": "sample string 16",<br /> "anchorMatchWholeWord": "sample string 17",<br /> "anchorHorizontalAlignment": "sample string 18",<br /> "tabId": "sample string 19",<br /> "templateLocked": "sample string 20",<br /> "templateRequired": "sample string 21",<br /> "conditionalParentLabel": "sample string 22",<br /> "conditionalParentValue": "sample string 23",<br /> "customTabId": "sample string 24",<br /> "mergeField": {},<br /> "tooltip": "sample string 25",<br /> "tabOrder": "sample string 26",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ]<br /> },<br /> "signInEachLocation": "sample string 3",<br /> "offlineAttributes": {<br /> "deviceName": "sample string 1",<br /> "deviceModel": "sample string 2",<br /> "gpsLatitude": "sample string 3",<br /> "gpsLongitude": "sample string 4",<br /> "accountEsignId": "sample string 5",<br /> "offlineSigningHash": "sample string 6"<br /> },<br /> "requireSignerCertificate": "sample string 4",<br /> "requireSignOnPaper": "sample string 5",<br /> "canSignOffline": "sample string 6",<br /> "isBulkRecipient": "sample string 7",<br /> "bulkRecipientsUri": "sample string 8",<br /> "recipientSuppliesTabs": "sample string 9",<br /> "recipientSignatureProviders": [<br /> {<br /> "sealName": "sample string 1",<br /> "sealDocumentsWithTabsOnly": "sample string 2",<br /> "signatureProviderName": "sample string 3",<br /> "signatureProviderOptions": {<br /> "sms": "sample string 1",<br /> "oneTimePassword": "sample string 2",<br /> "cpfNumber": "sample string 3",<br /> "signerRole": "sample string 4"<br /> }<br /> }<br /> ],<br /> "agentCanEditEmail": "sample string 10",<br /> "agentCanEditName": "sample string 11",<br /> "proofFile": {<br /> "isInProofFile": "sample string 1",<br /> "hasIdentityAttempts": "sample string 2"<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 12",<br /> "email": "sample string 13",<br /> "emailRecipientPostSigningURL": "sample string 14",<br /> "signingGroupId": "sample string 15",<br /> "signingGroupName": "sample string 16",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 17",<br /> "firstName": "sample string 18",<br /> "lastName": "sample string 19",<br /> "recipientId": "sample string 20",<br /> "recipientIdGuid": "sample string 21",<br /> "accessCode": "sample string 22",<br /> "addAccessCodeToEmail": "sample string 23",<br /> "requireIdLookup": "sample string 24",<br /> "idCheckConfigurationName": "sample string 25",<br /> "socialAuthentications": [<br /> {<br /> "authentication": "sample string 1"<br /> }<br /> ],<br /> "phoneAuthentication": {<br /> "recipMayProvideNumber": "sample string 1",<br /> "validateRecipProvidedNumber": "sample string 2",<br /> "recordVoicePrint": "sample string 3",<br /> "senderProvidedNumbers": [<br /> "sample string 1"<br /> ]<br /> },<br /> "samlAuthentication": {<br /> "samlAssertionAttributes": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3"<br /> }<br /> ]<br /> },<br /> "smsAuthentication": {<br /> "senderProvidedNumbers": [<br /> "sample string 1"<br /> ]<br /> },<br /> "identityVerification": {<br /> "workflowId": "sample string 1",<br /> "inputOptions": [<br /> {<br /> "name": "sample string 1",<br /> "valueType": "sample string 2",<br /> "phoneNumberList": [<br /> {<br /> "countryCodeLock": true,<br /> "countryCode": "sample string 2",<br /> "number": "sample string 3",<br /> "extension": "sample string 4"<br /> }<br /> ]<br /> }<br /> ]<br /> },<br /> "userId": "sample string 26",<br /> "clientUserId": "sample string 27",<br /> "embeddedRecipientStartURL": "sample string 28",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 29",<br /> "idCheckInformationInput": {<br /> "addressInformationInput": {<br /> "addressInformation": {<br /> "street1": "sample string 1",<br /> "street2": "sample string 2",<br /> "city": "sample string 3",<br /> "state": "sample string 4",<br /> "zip": "sample string 5",<br /> "phone": "sample string 6",<br /> "fax": "sample string 7",<br /> "country": "sample string 8",<br /> "zipPlus4": "sample string 9"<br /> },<br /> "displayLevelCode": "sample string 1",<br /> "receiveInResponse": "sample string 2"<br /> },<br /> "dobInformationInput": {<br /> "dateOfBirth": "sample string 1",<br /> "displayLevelCode": "sample string 2",<br /> "receiveInResponse": "sample string 3"<br /> },<br /> "ssn4InformationInput": {<br /> "ssn4": "sample string 1",<br /> "displayLevelCode": "sample string 2",<br /> "receiveInResponse": "sample string 3"<br /> },<br /> "ssn9InformationInput": {<br /> "ssn9": "sample string 1",<br /> "displayLevelCode": "sample string 2"<br /> }<br /> },<br /> "recipientAttachments": [<br /> {<br /> "attachmentId": "sample string 1",<br /> "label": "sample string 2",<br /> "attachmentType": "sample string 3",<br /> "name": "sample string 4",<br /> "data": "sample string 5",<br /> "remoteUrl": "sample string 6"<br /> }<br /> ],<br /> "note": "sample string 30",<br /> "roleName": "sample string 31",<br /> "status": "sample string 32",<br /> "declinedReason": "sample string 33",<br /> "deliveryMethod": "sample string 34",<br /> "faxNumber": "sample string 35",<br /> "templateLocked": "sample string 36",<br /> "templateRequired": "sample string 37",<br /> "emailNotification": {<br /> "emailSubject": "sample string 1",<br /> "emailBody": "sample string 2",<br /> "supportedLanguage": "sample string 3"<br /> },<br /> "inheritEmailNotificationConfiguration": "sample string 38",<br /> "documentVisibility": [<br /> {<br /> "recipientId": "sample string 1",<br /> "documentId": "sample string 2",<br /> "visible": "sample string 3",<br /> "rights": "sample string 4"<br /> }<br /> ]<br /> }<br /> ],<br /> "agents": [<br /> {<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "editors": [<br /> {<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "intermediaries": [<br /> {<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "carbonCopies": [<br /> {<br /> "agentCanEditEmail": "sample string 1",<br /> "agentCanEditName": "sample string 2",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 3",<br /> "email": "sample string 4",<br /> "emailRecipientPostSigningURL": "sample string 5",<br /> "signingGroupId": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 8",<br /> "firstName": "sample string 9",<br /> "lastName": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "recipientIdGuid": "sample string 12",<br /> "accessCode": "sample string 13",<br /> "addAccessCodeToEmail": "sample string 14",<br /> "requireIdLookup": "sample string 15",<br /> "idCheckConfigurationName": "sample string 16",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 17",<br /> "clientUserId": "sample string 18",<br /> "embeddedRecipientStartURL": "sample string 19",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 20",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 21",<br /> "roleName": "sample string 22",<br /> "status": "sample string 23",<br /> "declinedReason": "sample string 24",<br /> "deliveryMethod": "sample string 25",<br /> "faxNumber": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 29",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "certifiedDeliveries": [<br /> {<br /> "agentCanEditEmail": "sample string 1",<br /> "agentCanEditName": "sample string 2",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 3",<br /> "email": "sample string 4",<br /> "emailRecipientPostSigningURL": "sample string 5",<br /> "signingGroupId": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 8",<br /> "firstName": "sample string 9",<br /> "lastName": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "recipientIdGuid": "sample string 12",<br /> "accessCode": "sample string 13",<br /> "addAccessCodeToEmail": "sample string 14",<br /> "requireIdLookup": "sample string 15",<br /> "idCheckConfigurationName": "sample string 16",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 17",<br /> "clientUserId": "sample string 18",<br /> "embeddedRecipientStartURL": "sample string 19",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 20",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 21",<br /> "roleName": "sample string 22",<br /> "status": "sample string 23",<br /> "declinedReason": "sample string 24",<br /> "deliveryMethod": "sample string 25",<br /> "faxNumber": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 29",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "inPersonSigners": [<br /> {<br /> "hostName": "sample string 1",<br /> "hostEmail": "sample string 2",<br /> "signerName": "sample string 3",<br /> "signerEmail": "sample string 4",<br /> "signatureInfo": {},<br /> "autoNavigation": "sample string 5",<br /> "defaultRecipient": "sample string 6",<br /> "offlineAttributes": {},<br /> "tabs": {},<br /> "signInEachLocation": "sample string 7",<br /> "requireSignerCertificate": "sample string 8",<br /> "requireSignOnPaper": "sample string 9",<br /> "canSignOffline": "sample string 10",<br /> "recipientSuppliesTabs": "sample string 11",<br /> "signingGroupId": "sample string 12",<br /> "signingGroupName": "sample string 13",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "notaryHost": {<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "hostRecipientId": "sample string 3",<br /> "tabs": {},<br /> "recipientId": "sample string 4",<br /> "recipientIdGuid": "sample string 5",<br /> "accessCode": "sample string 6",<br /> "addAccessCodeToEmail": "sample string 7",<br /> "requireIdLookup": "sample string 8",<br /> "idCheckConfigurationName": "sample string 9",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 10",<br /> "clientUserId": "sample string 11",<br /> "embeddedRecipientStartURL": "sample string 12",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 13",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 14",<br /> "roleName": "sample string 15",<br /> "status": "sample string 16",<br /> "declinedReason": "sample string 17",<br /> "deliveryMethod": "sample string 18",<br /> "faxNumber": "sample string 19",<br /> "templateLocked": "sample string 20",<br /> "templateRequired": "sample string 21",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 22",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> },<br /> "inPersonSigningType": "sample string 14",<br /> "name": "sample string 15",<br /> "email": "sample string 16",<br /> "recipientId": "sample string 17",<br /> "recipientIdGuid": "sample string 18",<br /> "accessCode": "sample string 19",<br /> "addAccessCodeToEmail": "sample string 20",<br /> "requireIdLookup": "sample string 21",<br /> "idCheckConfigurationName": "sample string 22",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 23",<br /> "clientUserId": "sample string 24",<br /> "embeddedRecipientStartURL": "sample string 25",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 26",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 27",<br /> "roleName": "sample string 28",<br /> "status": "sample string 29",<br /> "declinedReason": "sample string 30",<br /> "deliveryMethod": "sample string 31",<br /> "faxNumber": "sample string 32",<br /> "templateLocked": "sample string 33",<br /> "templateRequired": "sample string 34",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 35",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "seals": [<br /> {<br /> "name": "sample string 1",<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "tabs": {},<br /> "recipientId": "sample string 2",<br /> "recipientIdGuid": "sample string 3",<br /> "accessCode": "sample string 4",<br /> "addAccessCodeToEmail": "sample string 5",<br /> "requireIdLookup": "sample string 6",<br /> "idCheckConfigurationName": "sample string 7",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 8",<br /> "clientUserId": "sample string 9",<br /> "embeddedRecipientStartURL": "sample string 10",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 11",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 12",<br /> "roleName": "sample string 13",<br /> "status": "sample string 14",<br /> "declinedReason": "sample string 15",<br /> "deliveryMethod": "sample string 16",<br /> "faxNumber": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 20",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "witnesses": [<br /> {<br /> "witnessFor": "sample string 1",<br /> "witnessForGuid": "sample string 2",<br /> "signatureInfo": {},<br /> "autoNavigation": "sample string 3",<br /> "defaultRecipient": "sample string 4",<br /> "tabs": {},<br /> "signInEachLocation": "sample string 5",<br /> "offlineAttributes": {},<br /> "requireSignerCertificate": "sample string 6",<br /> "requireSignOnPaper": "sample string 7",<br /> "canSignOffline": "sample string 8",<br /> "isBulkRecipient": "sample string 9",<br /> "bulkRecipientsUri": "sample string 10",<br /> "recipientSuppliesTabs": "sample string 11",<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "agentCanEditEmail": "sample string 12",<br /> "agentCanEditName": "sample string 13",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 14",<br /> "email": "sample string 15",<br /> "emailRecipientPostSigningURL": "sample string 16",<br /> "signingGroupId": "sample string 17",<br /> "signingGroupName": "sample string 18",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 19",<br /> "firstName": "sample string 20",<br /> "lastName": "sample string 21",<br /> "recipientId": "sample string 22",<br /> "recipientIdGuid": "sample string 23",<br /> "accessCode": "sample string 24",<br /> "addAccessCodeToEmail": "sample string 25",<br /> "requireIdLookup": "sample string 26",<br /> "idCheckConfigurationName": "sample string 27",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 28",<br /> "clientUserId": "sample string 29",<br /> "embeddedRecipientStartURL": "sample string 30",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 31",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 32",<br /> "roleName": "sample string 33",<br /> "status": "sample string 34",<br /> "declinedReason": "sample string 35",<br /> "deliveryMethod": "sample string 36",<br /> "faxNumber": "sample string 37",<br /> "templateLocked": "sample string 38",<br /> "templateRequired": "sample string 39",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 40",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "recipientCount": "sample string 1",<br /> "currentRoutingOrder": "sample string 2"<br /> },<br /> "brandLock": "sample string 38",<br /> "brandId": "sample string 39",<br /> "useDisclosure": "sample string 40",<br /> "emailSettings": {<br /> "replyEmailAddressOverride": "sample string 1",<br /> "replyEmailNameOverride": "sample string 2",<br /> "bccEmailAddresses": [<br /> {<br /> "bccEmailAddressId": "sample string 1",<br /> "email": "sample string 2"<br /> }<br /> ]<br /> },<br /> "purgeState": "sample string 41",<br /> "lockInformation": {<br /> "lockedByUser": {},<br /> "lockedByApp": "sample string 1",<br /> "lockedUntilDateTime": "sample string 2",<br /> "lockDurationInSeconds": "sample string 3",<br /> "lockType": "sample string 4",<br /> "useScratchPad": "sample string 5",<br /> "lockToken": "sample string 6",<br /> "errorDetails": {<br /> "errorCode": "sample string 1",<br /> "message": "sample string 2"<br /> }<br /> },<br /> "is21CFRPart11": "sample string 42",<br /> "disableResponsiveDocument": "sample string 43"<br />}</code> |

### Create Webhook

Create a new webhook (Account Level).

| Input                                | Comments                                                                        | Default |
| ------------------------------------ | ------------------------------------------------------------------------------- | ------- |
| Connection                           |                                                                                 |         |
| URL To Publish To                    | The URL that DocuSign will publish events to.                                   |         |
| Connect (Webhook) Configuration Name | A name for the configuration.                                                   |         |
| Webhook Event                        | The list of event types to subscribe to.                                        |         |
| Include HMAC                         | When true, the HMAC hash is included in the message along with the API request. | false   |

### Delete Account

Closes the specified account.

| Input      | Comments                                              | Default |
| ---------- | ----------------------------------------------------- | ------- |
| Connection |                                                       |         |
| Account ID | The external account number (int) or account ID GUID. |         |

### Delete Account Signature

Deletes a stamp specified by signatureId.

| Input        | Comments                                              | Default |
| ------------ | ----------------------------------------------------- | ------- |
| Connection   |                                                       |         |
| Account ID   | The external account number (int) or account ID GUID. |         |
| Signature ID | The unique identifier of the signature.               |         |

### Delete All Instanced Webhooks

Delete all webhooks that point to a flow in this instance.

| Input      | Comments | Default |
| ---------- | -------- | ------- |
| Connection |          |         |

### Delete Bulk Send List

This method deletes a bulk send list.

| Input             | Comments                                                                                      | Default |
| ----------------- | --------------------------------------------------------------------------------------------- | ------- |
| Connection        |                                                                                               |         |
| Bulk Send List ID | The GUID of the bulk send list. This property is created after you post a new bulk send list. |         |

### Delete Contact

This method deletes a contact associated with an account.

| Input      | Comments                                                  | Default |
| ---------- | --------------------------------------------------------- | ------- |
| Connection |                                                           |         |
| Contact ID | The ID of a contact person in the account's address book. |         |

### Delete Envelope Document

Deletes one or more documents from an existing envelope that has not yet been completed.

| Input        | Comments                          | Default |
| ------------ | --------------------------------- | ------- |
| Connection   |                                   |         |
| Envelope ID  | The envelope's GUID.              |         |
| Document IDs | A list of document IDs to delete. |         |

### Delete Template Document

This method deletes one or more documents from an existing template.

| Input        | Comments                          | Default |
| ------------ | --------------------------------- | ------- |
| Connection   |                                   |         |
| Template ID  | The ID of the template.           |         |
| Document IDs | A list of document IDs to delete. |         |

### Delete User

Closes one or more users in the account, preventing them from accessing account features.

| Input      | Comments                                                                                                                        | Default |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection |                                                                                                                                 |         |
| User IDs   | A list of user IDs to delete.                                                                                                   |         |
| Delete     | A list of groups to remove the user from. A comma-separated list of the following: Groups, PermissionSet or SigningGroupsEmail. |         |

### Delete Webhook

Delete a single webhook.

| Input      | Comments                                                        | Default |
| ---------- | --------------------------------------------------------------- | ------- |
| Connection |                                                                 |         |
| Connect ID | The ID of the custom Connect (Webhook) configuration to delete. |         |

### Get Account

Retrieves the account information for the specified account.

| Input      | Comments                                              | Default |
| ---------- | ----------------------------------------------------- | ------- |
| Connection |                                                       |         |
| Account ID | The external account number (int) or account ID GUID. |         |

### Get Account Signature

Returns information about the specified stamp.

| Input        | Comments                                | Default |
| ------------ | --------------------------------------- | ------- |
| Connection   |                                         |         |
| Signature ID | The unique identifier of the signature. |         |

### Get Account Signature Image

Returns the image for an account stamp.

| Input        | Comments                                | Default |
| ------------ | --------------------------------------- | ------- |
| Connection   |                                         |         |
| Signature ID | The unique identifier of the signature. |         |
| Image Type   | Specifies the type of image.            |         |

### Get Bulk Send Batches

Returns a summary of bulk send batches.

| Input      | Comments | Default |
| ---------- | -------- | ------- |
| Connection |          |         |

### Get Bulk Send List

This method returns all of the details associated with a specific bulk send list that belongs to the current user.

| Input             | Comments                                                                                      | Default |
| ----------------- | --------------------------------------------------------------------------------------------- | ------- |
| Connection        |                                                                                               |         |
| Bulk Send List ID | The GUID of the bulk send list. This property is created after you post a new bulk send list. |         |

### Get Bulk Send Lists

This method returns a list of bulk send lists belonging to the current user, as well as basic information about each list.

| Input      | Comments | Default |
| ---------- | -------- | ------- |
| Connection |          |         |

### Get Bulk Send Status

Gets the general status of a specific bulk send batch.

| Input              | Comments      | Default |
| ------------------ | ------------- | ------- |
| Connection         |               |         |
| Bulk Send Batch ID | The batch ID. |         |

### Get Contact

This method returns one or more contacts associated with a DocuSign account.

| Input          | Comments                                                                                         | Default |
| -------------- | ------------------------------------------------------------------------------------------------ | ------- |
| Connection     |                                                                                                  |         |
| Contact ID     | The ID of a contact person in the account's address book.                                        |         |
| Cloud Provider | The cloud provider from which to retrieve the contacts. Valid values are: rooms or docusignCore. |         |

### Get Envelope

Retrieves the overall status for the specified envelope.

| Input           | Comments                                                                                                              | Default |
| --------------- | --------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection      |                                                                                                                       |         |
| Envelope ID     | The envelope's GUID.                                                                                                  |         |
| Advanced Update | When true, allows advanced update operations for the document.                                                        | false   |
| Include         | Specifies additional information about the envelope to return. Enter a comma-separated list, such as tabs,recipients. |         |

### Get Envelope Document

Retrieves a single document or all documents from an envelope.

| Input                | Comments                                                                                                                                                                                                                                                                                                                                   | Default |
| -------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- |
| Connection           |                                                                                                                                                                                                                                                                                                                                            |         |
| Envelope ID          | The envelope's GUID.                                                                                                                                                                                                                                                                                                                       |         |
| Document ID          | The ID of the document to retrieve.                                                                                                                                                                                                                                                                                                        |         |
| Certificate          | When true, the certificate of completion is included in the combined PDF.                                                                                                                                                                                                                                                                  | false   |
| Documents By User ID | When true, allows recipients to get documents by their user ID.                                                                                                                                                                                                                                                                            | false   |
| Encrypt              | When true, the PDF bytes returned in the response are encrypted for all key managers configured on your DocuSign account.                                                                                                                                                                                                                  | false   |
| Language             | Specifies the language for the Certificate of Completion in the response. The supported languages are: Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Dutch (nl), English US (en), French (fr), German (de), Italian (it), Japanese (ja), Korean (ko), Portuguese (pt), Portuguese (Brazil) (pt_BR), Russian (ru), Spanish (es). |         |
| Recipient ID         | Allows the sender to retrieve the documents as one of the recipients that they control. The documents_by_userid parameter must be set to false for this to work.                                                                                                                                                                           |         |
| Shared User ID       | The ID of a shared user that you want to impersonate in order to retrieve their view of the list of documents.                                                                                                                                                                                                                             |         |
| Show Changes         | When true, any changed fields in the returned PDF are highlighted in yellow and optional signatures or initials are outlined in red. The account must have the Highlight Data Changes feature enabled.                                                                                                                                     | false   |
| Watermark            | When true, and the account has the watermark feature enabled, and the envelope is not complete, the watermark for the account is added to the PDF documents. This option can remove the watermark.                                                                                                                                         | false   |

### Get Recipient Signature

Retrieves signature information for a signer or sign-in-person recipient.

| Input        | Comments                                                                                                                                                                                             | Default |
| ------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection   |                                                                                                                                                                                                      |         |
| Envelope ID  | The envelope's GUID.                                                                                                                                                                                 |         |
| Recipient ID | A local reference used to map recipients to other objects, such as specific document tabs. A recipientId must be either an integer or a GUID, and the recipientId must be unique within an envelope. |         |

### Get Recipient Signature Image

Retrieves the specified user signature image.

| Input          | Comments                                                                                                                                                                                             | Default |
| -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection     |                                                                                                                                                                                                      |         |
| Envelope ID    | The envelope's GUID.                                                                                                                                                                                 |         |
| Recipient ID   | A local reference used to map recipients to other objects, such as specific document tabs. A recipientId must be either an integer or a GUID, and the recipientId must be unique within an envelope. |         |
| Include Chrome | When true, the response includes the chrome-styled version of the signature image.                                                                                                                   | false   |

### Get Template

Retrieves the definition of the specified template.

| Input       | Comments                | Default |
| ----------- | ----------------------- | ------- |
| Connection  |                         |         |
| Template ID | The ID of the template. |         |

### Get Template Document

This method retrieves one or more PDF documents from the template that you specify.

| Input        | Comments                                                                                                                                                                 | Default |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------- |
| Connection   |                                                                                                                                                                          |         |
| Template ID  | The ID of the template.                                                                                                                                                  |         |
| Document ID  | The ID of the document to retrieve.                                                                                                                                      |         |
| Encrypt      | When true, the PDF bytes returned in the response are encrypted for all key managers configured on your DocuSign account.                                                | false   |
| File Type    | The type of file to retrieve.                                                                                                                                            |         |
| Show Changes | When true, any document fields that a recipient changed are highlighted in yellow in the returned PDF document, and optional signatures or initials are outlined in red. | false   |

### Get User

Retrieves the user information for the specified user.

| Input      | Comments                      | Default |
| ---------- | ----------------------------- | ------- |
| Connection |                               |         |
| User ID    | The ID of the user to access. |         |

### Get Webhook

Retrieve a single webhook.

| Input      | Comments                                                             | Default |
| ---------- | -------------------------------------------------------------------- | ------- |
| Connection |                                                                      |         |
| Connect ID | The ID of the custom Connect (Webhook) configuration being accessed. |         |

### List Account Settings

Retrieves the account settings information for the specified account.

| Input      | Comments                                              | Default |
| ---------- | ----------------------------------------------------- | ------- |
| Connection |                                                       |         |
| Account ID | The external account number (int) or account ID GUID. |         |

### List Envelope Documents

Retrieves a list of documents associated with the specified envelope.

| Input                | Comments                                                                                                                                                         | Default |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection           |                                                                                                                                                                  |         |
| Envelope ID          | The envelope's GUID.                                                                                                                                             |         |
| Documents By User ID | When true, allows recipients to get documents by their user ID.                                                                                                  | false   |
| Include Metadata     | When true, the response includes metadata indicating which properties the sender can edit.                                                                       | false   |
| Include Tabs         | When true, information about the tabs, including prefill tabs, associated with the documents is included in the response.                                        | false   |
| Recipient ID         | Allows the sender to retrieve the documents as one of the recipients that they control. The documents_by_userid parameter must be set to false for this to work. |         |
| Shared User ID       | The ID of a shared user that you want to impersonate in order to retrieve their view of the list of documents.                                                   |         |

### List Folder Items

Gets information about items in the specified folder.

| Input         | Comments                                                                                                                                                         | Default |
| ------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection    |                                                                                                                                                                  |         |
| Folder ID     | The ID of the folder.                                                                                                                                            |         |
| Fetch All     | When enabled, automatically fetches all pages of results using startPosition/count pagination. Start Position and Count inputs are ignored when this is enabled. | false   |
| Include Items | When true, folder items are included in the response.                                                                                                            | false   |

### List Folders

Returns a list of the account's folders.

| Input            | Comments                                                                                                                                                         | Default |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection       |                                                                                                                                                                  |         |
| Fetch All        | When enabled, automatically fetches all pages of results using startPosition/count pagination. Start Position and Count inputs are ignored when this is enabled. | false   |
| Count            | The maximum number of results to return.                                                                                                                         |         |
| Include          | A comma-separated list of folder types to include in the response. Valid values are: envelope_folders, template_folders and shared_template_folders.             |         |
| Include Items    | When true, folder items are included in the response.                                                                                                            | false   |
| Start Position   | The zero-based index of the result from which to start returning results.                                                                                        |         |
| Sub Folder Depth | If missing or any value other than -1, the returned list contains only the top-level folders. A value of -1 returns the complete folder hierarchy.               |         |
| User Filter      | Narrows down the resulting folder list by the following values: all, owned_by_me and shared_with_me.                                                             |         |

### List Template Documents

Retrieves a list of documents associated with the specified template.

| Input       | Comments                | Default |
| ----------- | ----------------------- | ------- |
| Connection  |                         |         |
| Template ID | The ID of the template. |         |

### List Templates

Retrieves the list of templates for the specified account.

| Input      | Comments                                                                                                                                                         | Default |
| ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection |                                                                                                                                                                  |         |
| Fetch All  | When enabled, automatically fetches all pages of results using startPosition/count pagination. Start Position and Count inputs are ignored when this is enabled. | false   |

### List Webhooks

Retrieve all webhooks.

| Input      | Comments | Default |
| ---------- | -------- | ------- |
| Connection |          |         |

### Raw Request

Send raw HTTP request to DocuSign.

| Input                   | Comments                                                                                                                                                                                                                                                                                                          | Default |
| ----------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| Connection              |                                                                                                                                                                                                                                                                                                                   |         |
| URL                     | Input the path only (/ACCOUNT_ID/folders), The base URL is already included (https://account.docusign.com for live environment or https://account-d.docusign.com for development). For example, to connect to https://account.docusign.com/ACCOUNT_ID/folders, only /ACCOUNT_ID/folders is entered in this field. |         |
| Method                  | The HTTP method to use.                                                                                                                                                                                                                                                                                           |         |
| Data                    | The HTTP body payload to send to the URL.                                                                                                                                                                                                                                                                         |         |
| Form Data               | The Form Data to be sent as a multipart form upload.                                                                                                                                                                                                                                                              |         |
| File Data               | File Data to be sent as a multipart form upload.                                                                                                                                                                                                                                                                  |         |
| File Data File Names    | File names to apply to the file data inputs. Keys must match the file data keys above.                                                                                                                                                                                                                            |         |
| Query Parameter         | A list of query parameters to send with the request. This is the portion at the end of the URL similar to ?key1=value1&key2=value2.                                                                                                                                                                               |         |
| Header                  | A list of headers to send with the request.                                                                                                                                                                                                                                                                       |         |
| Response Type           | The type of data you expect in the response. You can request json, text, or binary data.                                                                                                                                                                                                                          | json    |
| Timeout                 | The maximum time that a client will await a response to its request                                                                                                                                                                                                                                               |         |
| Debug Request           | Enabling this flag will log out the current request.                                                                                                                                                                                                                                                              | false   |
| Retry Delay (ms)        | The delay in milliseconds between retries. This is used when 'Use Exponential Backoff' is disabled.                                                                                                                                                                                                               | 0       |
| Retry On All Errors     | If true, retries on all erroneous responses regardless of type. This is helpful when retrying after HTTP 429 or other 3xx or 4xx errors. Otherwise, only retries on HTTP 5xx and network errors.                                                                                                                  | false   |
| Max Retry Count         | The maximum number of retries to attempt. Specify 0 for no retries.                                                                                                                                                                                                                                               | 0       |
| Use Exponential Backoff | Specifies whether to use a pre-defined exponential backoff strategy for retries. When enabled, 'Retry Delay (ms)' is ignored.                                                                                                                                                                                     | false   |

### Update Account Signature

Updates an account stamp specified by the signatureId query parameter.

| Input                      | Comments                                                                                                                                                                         | Default                                                                                                               |
| -------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| Connection                 |                                                                                                                                                                                  |                                                                                                                       |
| Signature ID               | Signature ID to update.                                                                                                                                                          |                                                                                                                       |
| Date Area Height           | The height of the rectangle.                                                                                                                                                     |                                                                                                                       |
| Date Area Width            | The width of the rectangle.                                                                                                                                                      |                                                                                                                       |
| Date Area X                | The X axis position of the top-left corner.                                                                                                                                      |                                                                                                                       |
| Date Area Y                | The Y axis position of the top-left corner.                                                                                                                                      |                                                                                                                       |
| Disallow User Resize Stamp | When true, prevents the user from resizing the stamp.                                                                                                                            | false                                                                                                                 |
| External ID                | Optionally specify an external identifier for the user's signature.                                                                                                              |                                                                                                                       |
| Image Type                 | Specifies the type of image.                                                                                                                                                     |                                                                                                                       |
| Is Default                 | When true, specifies that the signature is the default signature for the user.                                                                                                   | false                                                                                                                 |
| NRDS ID                    | The National Association of Realtors (NAR) membership ID for a user who is a realtor.                                                                                            |                                                                                                                       |
| NRDS Last Name             | The last name of the user who is a realtor.                                                                                                                                      |                                                                                                                       |
| Phonetic Name              | The phonetic spelling of the signatureName.                                                                                                                                      |                                                                                                                       |
| Signature Font             | The font type to use for the signature if the signature is not drawn.                                                                                                            |                                                                                                                       |
| Signature ID               | Specifies the signature ID associated with the signature name.                                                                                                                   |                                                                                                                       |
| Signature Groups           | A JSON array of signature groups.                                                                                                                                                | <code>[<br /> {<br /> "groupId": "12345",<br /> "rights": "editable"<br /> }<br />]</code>                            |
| Signature Initials         | Specifies the user's signature in initials format.                                                                                                                               |                                                                                                                       |
| Signature Name             | Specifies the user's signature name.                                                                                                                                             |                                                                                                                       |
| Signature Type             | The type of signature. Check this link for more information: https://support.docusign.com/s/document-item?language=en_US&bundleId=xcm1643837555908&topicId=url1578456563691.html |                                                                                                                       |
| Signature Users            | JSON array of users associated with the signature.                                                                                                                               | <code>[<br /> {<br /> "isDefault": "false",<br /> "userId": "12345",<br /> "rights": "editable"<br /> }<br />]</code> |
| Stamp Format               | NameHanko refers to the stamp that displays only the name of the signer. On the other hand, NameDateHanko refers to the stamp that displays both the name and date.              |                                                                                                                       |
| Stamp Size MM              | The size of the stamp in millimeters.                                                                                                                                            |                                                                                                                       |

### Update Account Signature Image

Sets a signature image, initials, or stamp.

| Input        | Comments                     | Default |
| ------------ | ---------------------------- | ------- |
| Connection   |                              |         |
| Signature ID | The ID of the account stamp. |         |
| Image Type   | Specifies the type of image. |         |

### Update Bulk Send List

This method replaces the definition of an existing bulk send list.

| Input             | Comments                                                                                                                       | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| ----------------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection        |                                                                                                                                |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| JSON Input        | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/bulkenvelopes/bulksend/updatebulksendlist/ | <code>{<br /> "bulkCopies": [<br /> {<br /> "customFields": [<br /> {<br /> "name": "ProductType",<br /> "value": "Electronics"<br /> }<br /> ],<br /> "docGenFormFields": [<br /> {<br /> "name": "DocumentType",<br /> "value": "Invoice"<br /> }<br /> ],<br /> "emailBlurb": "Please review and sign the attached document.",<br /> "emailSubject": "Document Signature Request",<br /> "recipients": [<br /> {<br /> "accessCode": "1234",<br /> "clientUserId": "user123",<br /> "customFields": [<br /> "Customer123"<br /> ],<br /> "deliveryMethod": "email",<br /> "email": "john.doe@example.com",<br /> "emailNotification": {<br /> "emailBody": "Dear John, please review and sign the attached document.",<br /> "emailBodyMetadata": {<br /> "options": [<br /> "Format1",<br /> "Format2"<br /> ],<br /> "rights": "editable"<br /> },<br /> "emailSubject": "Signature Request",<br /> "emailSubjectMetadata": {<br /> "options": [<br /> "Urgent",<br /> "Normal"<br /> ],<br /> "rights": "editable"<br /> },<br /> "supportedLanguage": "English",<br /> "supportedLanguageMetadata": {<br /> "options": [<br /> "English",<br /> "Spanish"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "embeddedRecipientStartURL": "https://example.com/signing-start",<br /> "faxNumber": "+1234567890",<br /> "hostEmail": "host@example.com",<br /> "hostName": "Host Name",<br /> "idCheckConfigurationName": "StandardCheck",<br /> "idCheckInformationInput": {<br /> "addressInformationInput": {<br /> "addressInformation": {<br /> "address1": "123 Main Street",<br /> "address2": "Apt 456",<br /> "city": "Cityville",<br /> "country": "USA",<br /> "fax": "+1234567891",<br /> "phone": "+9876543210",<br /> "postalCode": "12345",<br /> "stateOrProvince": "CA",<br /> "zipPlus4": "6789"<br /> },<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true"<br /> },<br /> "dobInformationInput": {<br /> "dateOfBirth": "1980-01-01",<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true"<br /> },<br /> "ssn4InformationInput": {<br /> "displayLevelCode": "ReadOnly",<br /> "receiveInResponse": "true",<br /> "ssn4": "5678"<br /> },<br /> "ssn9InformationInput": {<br /> "displayLevelCode": "ReadOnly",<br /> "ssn9": "123-45-6789"<br /> }<br /> },<br /> "identificationMethod": "GovernmentID",<br /> "identityVerification": {<br /> "workflowId": "IDVerificationWorkflow",<br /> "inputOptions": [<br /> {<br /> "name": "IDDocument",<br /> "valueType": "GovernmentID",<br /> "phoneNumberList": [<br /> {<br /> "countryCode": "1",<br /> "countryCodeLock": "1",<br /> "extension": "123",<br /> "number": "9876543210"<br /> }<br /> ]<br /> }<br /> ],<br /> "workflowIdMetadata": {<br /> "options": [<br /> "IDVerificationWorkflow"<br /> ],<br /> "rights": "editable"<br /> },<br /> "workflowLabel": "ID Verification"<br /> },<br /> "name": "John Doe",<br /> "note": "Please sign this document promptly.",<br /> "phoneAuthentication": {<br /> "recipMayProvideNumber": "true",<br /> "recipMayProvideNumberMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> },<br /> "recordVoicePrint": "true",<br /> "recordVoicePrintMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> },<br /> "senderProvidedNumbers": [<br /> "9876543210"<br /> ],<br /> "senderProvidedNumbersMetadata": {<br /> "options": [<br /> "9876543210"<br /> ],<br /> "rights": "editable"<br /> },<br /> "validateRecipProvidedNumber": "true",<br /> "validateRecipProvidedNumberMetadata": {<br /> "options": [<br /> "Yes",<br /> "No"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "recipientId": "recipient123",<br /> "recipientSignatureProviders": [<br /> {<br /> "sealDocumentsWithTabsOnly": "No",<br /> "sealName": "SignatureSeal",<br /> "signatureProviderName": "eSignProvider",<br /> "signatureProviderNameMetadata": {<br /> "options": [<br /> "eSignProvider"<br /> ],<br /> "rights": "editable"<br /> },<br /> "signatureProviderOptions": {<br /> "cpfNumber": "9876543210",<br /> "cpfNumberMetadata": {<br /> "options": [<br /> "9876543210"<br /> ],<br /> "rights": "editable"<br /> },<br /> "oneTimePassword": "OTP123",<br /> "oneTimePasswordMetadata": {<br /> "options": [<br /> "OTP123"<br /> ],<br /> "rights": "editable"<br /> },<br /> "signerRole": "Manager",<br /> "signerRoleMetadata": {<br /> "options": [<br /> "AuthorizedSigner"<br /> ],<br /> "rights": "editable"<br /> },<br /> "sms": "+9876543210",<br /> "smsMetadata": {<br /> "options": [<br /> "+9876543210"<br /> ],<br /> "rights": "editable"<br /> }<br /> }<br /> }<br /> ],<br /> "roleName": "Signer",<br /> "signerName": "John Doe",<br /> "signingGroupId": "Group123",<br /> "smsAuthentication": {<br /> "senderProvidedNumbers": [<br /> "+9876543210"<br /> ],<br /> "senderProvidedNumbersMetadata": {<br /> "options": [<br /> "+9876543210"<br /> ],<br /> "rights": "editable"<br /> }<br /> },<br /> "socialAuthentications": [<br /> {<br /> "authentication": "Facebook"<br /> }<br /> ],<br /> "tabs": [<br /> {<br /> "initialValue": "Sign Here",<br /> "tabLabel": "SignatureTab"<br /> }<br /> ]<br /> }<br /> ]<br /> }<br /> ],<br /> "listId": "List123",<br /> "name": "SignatureRequest123"<br />}</code> |
| Bulk Send List ID | The GUID of the bulk send list. This property is created after you post a new bulk send list.                                  |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |

### Update Contact

This method updates one or more contacts associated with an account.

| Input      | Comments                                                                                                   | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| ---------- | ---------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Connection |                                                                                                            |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/users/contacts/update/ | <code>{<br /> "contacts": [<br /> {<br /> "signingGroupUsers": [<br /> {<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "email": "sample string 3",<br /> "userType": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "loginStatus": "sample string 7",<br /> "sendActivationEmail": "sample string 8",<br /> "activationAccessCode": "sample string 9"<br /> }<br /> ],<br /> "contactId": "sample string 1",<br /> "name": "sample string 2",<br /> "emails": [<br /> "sample string 1"<br /> ],<br /> "organization": "sample string 3",<br /> "shared": "sample string 4",<br /> "contactUri": "sample string 5",<br /> "signingGroup": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "contactPhoneNumbers": [<br /> {<br /> "phoneNumber": "sample string 1",<br /> "phoneType": "sample string 2"<br /> }<br /> ]<br /> }<br /> ]<br />}</code> |

### Update Envelope

This method enables you to make changes to an envelope.

| Input           | Comments                                                                                                                            | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection      |                                                                                                                                     |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| JSON Input      | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/update/                     | <code>{<br /> "documents": [<br /> {<br /> "documentBase64": "[Document content (PDF File)]",<br /> "documentId": "1",<br /> "fileExtension": "pdf",<br /> "name": "NDA.pdf"<br /> }<br /> ],<br /> "emailSubject": "Please sign the NDA",<br /> "recipients": {<br /> "signers": [<br /> {<br /> "email": "the_nda_signer@example.com",<br /> "name": "Darlene Petersen",<br /> "recipientId": "1",<br /> "routingOrder": "1",<br /> "tabs": {<br /> "dateSignedTabs": [<br /> {<br /> "anchorString": "signer1date",<br /> "anchorYOffset": "-6",<br /> "fontSize": "Size12",<br /> "name": "Date Signed",<br /> "recipientId": "1",<br /> "tabLabel": "date_signed"<br /> }<br /> ],<br /> "fullNameTabs": [<br /> {<br /> "anchorString": "signer1name",<br /> "anchorYOffset": "-6",<br /> "fontSize": "Size12",<br /> "name": "Full Name",<br /> "recipientId": "1",<br /> "tabLabel": "Full Name"<br /> }<br /> ],<br /> "signHereTabs": [<br /> {<br /> "anchorString": "signer1sig",<br /> "anchorUnits": "mms",<br /> "anchorXOffset": "0",<br /> "anchorYOffset": "0",<br /> "name": "Please sign here",<br /> "optional": "false",<br /> "recipientId": "1",<br /> "scaleValue": 1,<br /> "tabLabel": "signer1sig"<br /> }<br /> ]<br /> }<br /> }<br /> ]<br /> },<br /> "status": "sent"<br />}</code> |
| Envelope ID     | The envelope's GUID.                                                                                                                |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| Advanced Update | When true, allows the caller to update recipients, tabs, custom fields, notification, email settings and other envelope attributes. | false                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| Resend Envelope | When true, resends the specified envelope.                                                                                          | false                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |

### Update Envelope Document

Adds or replaces a document in an existing draft or in-process envelope.

| Input         | Comments                                                       | Default     |
| ------------- | -------------------------------------------------------------- | ----------- |
| Connection    |                                                                |             |
| Document Name | The name of the document.                                      | newDocument |
| Envelope ID   | The envelope's GUID.                                           |             |
| Document ID   | The unique ID of the document within the envelope.             |             |
| PDF data      | This must refer to a buffer containing the raw bytes of a PDF. |             |

### Update Template

Updates an existing template.

| Input       | Comments                                                                                                        | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| ----------- | --------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection  |                                                                                                                 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| JSON Input  | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/templates/templates/update/ | <code>{<br /> "templateId": "sample string 1",<br /> "name": "sample string 2",<br /> "shared": "sample string 3",<br /> "password": "sample string 4",<br /> "newPassword": "sample string 5",<br /> "description": "sample string 6",<br /> "created": "sample string 7",<br /> "lastModified": "sample string 8",<br /> "lastModifiedBy": {<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "email": "sample string 3",<br /> "userType": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "loginStatus": "sample string 7",<br /> "sendActivationEmail": "sample string 8",<br /> "activationAccessCode": "sample string 9"<br /> },<br /> "pageCount": 9,<br /> "uri": "sample string 10",<br /> "folderName": "sample string 11",<br /> "folderId": "sample string 12",<br /> "folderUri": "sample string 13",<br /> "parentFolderUri": "sample string 14",<br /> "owner": {},<br /> "documents": [<br /> {<br /> "documentId": "sample string 1",<br /> "uri": "sample string 2",<br /> "remoteUrl": "sample string 3",<br /> "name": "sample string 4",<br /> "password": "sample string 5",<br /> "transformPdfFields": "sample string 6",<br /> "fileExtension": "sample string 7",<br /> "matchBoxes": [<br /> {<br /> "pageNumber": 1,<br /> "xPosition": 2,<br /> "yPosition": 3,<br /> "width": 4,<br /> "height": 5<br /> }<br /> ],<br /> "order": "sample string 8",<br /> "pages": "sample string 9",<br /> "documentFields": [<br /> {}<br /> ],<br /> "encryptedWithKeyManager": "sample string 10",<br /> "documentBase64": "sample string 11",<br /> "applyAnchorTabs": "sample string 12",<br /> "display": "sample string 13",<br /> "includeInDownload": "sample string 14",<br /> "signerMustAcknowledge": "sample string 15",<br /> "templateLocked": "sample string 16",<br /> "templateRequired": "sample string 17",<br /> "fileFormatHint": "sample string 18",<br /> "htmlDefinition": {<br /> "documentId": "sample string 1",<br /> "documentGuid": "sample string 2",<br /> "source": "sample string 3",<br /> "displayAnchors": [<br /> {<br /> "startAnchor": "sample string 1",<br /> "endAnchor": "sample string 2",<br /> "removeStartAnchor": true,<br /> "removeEndAnchor": true,<br /> "caseSensitive": true,<br /> "displaySettings": {<br /> "displayLabel": "sample string 1",<br /> "display": "sample string 2",<br /> "displayPageNumber": 3,<br /> "displayOrder": 4,<br /> "tableStyle": "sample string 5",<br /> "cellStyle": "sample string 6",<br /> "inlineOuterStyle": "sample string 7",<br /> "hideLabelWhenOpened": true,<br /> "scrollToTopWhenOpened": true,<br /> "preLabel": "sample string 10",<br /> "labelWhenOpened": "sample string 11",<br /> "collapsibleSettings": {<br /> "containerStyle": "sample string 1",<br /> "outerLabelAndArrowStyle": "sample string 2",<br /> "labelStyle": "sample string 3",<br /> "arrowStyle": "sample string 4",<br /> "arrowClosed": "sample string 5",<br /> "arrowOpen": "sample string 6",<br /> "arrowLocation": "sample string 7",<br /> "arrowColor": "sample string 8",<br /> "arrowSize": "sample string 9",<br /> "onlyArrowIsClickable": true<br /> }<br /> }<br /> }<br /> ],<br /> "removeEmptyTags": "sample string 4",<br /> "headerLabel": "sample string 5",<br /> "displayAnchorPrefix": "sample string 6",<br /> "maxScreenWidth": "sample string 7",<br /> "displayPageNumber": "sample string 8",<br /> "displayOrder": "sample string 9",<br /> "showMobileOptimizedToggle": "sample string 10"<br /> },<br /> "authoritativeCopy": true<br /> }<br /> ],<br /> "transactionId": "sample string 1",<br /> "status": "sample string 2",<br /> "documentsUri": "sample string 3",<br /> "recipientsUri": "sample string 4",<br /> "attachmentsUri": "sample string 5",<br /> "asynchronous": "sample string 6",<br /> "envelopeUri": "sample string 7",<br /> "emailSubject": "sample string 8",<br /> "emailBlurb": "sample string 9",<br /> "envelopeId": "sample string 10",<br /> "signingLocation": "sample string 11",<br /> "customFieldsUri": "sample string 12",<br /> "customFields": {<br /> "textCustomFields": [<br /> {<br /> "fieldId": "sample string 1",<br /> "name": "sample string 2",<br /> "show": "sample string 3",<br /> "required": "sample string 4",<br /> "value": "sample string 5",<br /> "configurationType": "sample string 6"<br /> }<br /> ],<br /> "listCustomFields": [<br /> {<br /> "listItems": [<br /> "sample string 1"<br /> ],<br /> "fieldId": "sample string 1",<br /> "name": "sample string 2",<br /> "show": "sample string 3",<br /> "required": "sample string 4",<br /> "value": "sample string 5",<br /> "configurationType": "sample string 6"<br /> }<br /> ]<br /> },<br /> "autoNavigation": "sample string 13",<br /> "envelopeIdStamping": "sample string 14",<br /> "authoritativeCopy": "sample string 15",<br /> "authoritativeCopyDefault": "sample string 16",<br /> "notification": {<br /> "useAccountDefaults": "sample string 1",<br /> "reminders": {<br /> "reminderEnabled": "sample string 1",<br /> "reminderDelay": "sample string 2",<br /> "reminderFrequency": "sample string 3"<br /> },<br /> "expirations": {<br /> "expireEnabled": "sample string 1",<br /> "expireAfter": "sample string 2",<br /> "expireWarn": "sample string 3"<br /> }<br /> },<br /> "notificationUri": "sample string 17",<br /> "enforceSignerVisibility": "sample string 18",<br /> "enableWetSign": "sample string 19",<br /> "allowMarkup": "sample string 20",<br /> "allowReassign": "sample string 21",<br /> "createdDateTime": "sample string 22",<br /> "lastModifiedDateTime": "sample string 23",<br /> "deliveredDateTime": "sample string 24",<br /> "initialSentDateTime": "sample string 25",<br /> "sentDateTime": "sample string 26",<br /> "completedDateTime": "sample string 27",<br /> "voidedDateTime": "sample string 28",<br /> "voidedReason": "sample string 29",<br /> "deletedDateTime": "sample string 30",<br /> "declinedDateTime": "sample string 31",<br /> "statusChangedDateTime": "sample string 32",<br /> "documentsCombinedUri": "sample string 33",<br /> "certificateUri": "sample string 34",<br /> "templatesUri": "sample string 35",<br /> "messageLock": "sample string 36",<br /> "recipientsLock": "sample string 37",<br /> "recipients": {<br /> "signers": [<br /> {<br /> "signatureInfo": {<br /> "signatureName": "sample string 1",<br /> "signatureInitials": "sample string 2",<br /> "fontStyle": "sample string 3"<br /> },<br /> "autoNavigation": "sample string 1",<br /> "defaultRecipient": "sample string 2",<br /> "tabs": {<br /> "signHereTabs": [<br /> {<br /> "stampType": "sample string 1",<br /> "name": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 4",<br /> "documentId": "sample string 5",<br /> "recipientId": "sample string 6",<br /> "pageNumber": "sample string 7",<br /> "xPosition": "sample string 8",<br /> "yPosition": "sample string 9",<br /> "anchorString": "sample string 10",<br /> "anchorXOffset": "sample string 11",<br /> "anchorYOffset": "sample string 12",<br /> "anchorUnits": "sample string 13",<br /> "anchorIgnoreIfNotPresent": "sample string 14",<br /> "anchorCaseSensitive": "sample string 15",<br /> "anchorMatchWholeWord": "sample string 16",<br /> "anchorHorizontalAlignment": "sample string 17",<br /> "tabId": "sample string 18",<br /> "templateLocked": "sample string 19",<br /> "templateRequired": "sample string 20",<br /> "conditionalParentLabel": "sample string 21",<br /> "conditionalParentValue": "sample string 22",<br /> "customTabId": "sample string 23",<br /> "mergeField": {<br /> "configurationType": "sample string 1",<br /> "path": "sample string 2",<br /> "writeBack": "sample string 3",<br /> "allowSenderToEdit": "sample string 4",<br /> "row": "sample string 5"<br /> },<br /> "tooltip": "sample string 24",<br /> "tabOrder": "sample string 25",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "initialHereTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 3",<br /> "documentId": "sample string 4",<br /> "recipientId": "sample string 5",<br /> "pageNumber": "sample string 6",<br /> "xPosition": "sample string 7",<br /> "yPosition": "sample string 8",<br /> "anchorString": "sample string 9",<br /> "anchorXOffset": "sample string 10",<br /> "anchorYOffset": "sample string 11",<br /> "anchorUnits": "sample string 12",<br /> "anchorIgnoreIfNotPresent": "sample string 13",<br /> "anchorCaseSensitive": "sample string 14",<br /> "anchorMatchWholeWord": "sample string 15",<br /> "anchorHorizontalAlignment": "sample string 16",<br /> "tabId": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "conditionalParentLabel": "sample string 20",<br /> "conditionalParentValue": "sample string 21",<br /> "customTabId": "sample string 22",<br /> "mergeField": {},<br /> "tooltip": "sample string 23",<br /> "tabOrder": "sample string 24",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "signerAttachmentTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "scaleValue": 1.1,<br /> "optional": "sample string 3",<br /> "documentId": "sample string 4",<br /> "recipientId": "sample string 5",<br /> "pageNumber": "sample string 6",<br /> "xPosition": "sample string 7",<br /> "yPosition": "sample string 8",<br /> "anchorString": "sample string 9",<br /> "anchorXOffset": "sample string 10",<br /> "anchorYOffset": "sample string 11",<br /> "anchorUnits": "sample string 12",<br /> "anchorIgnoreIfNotPresent": "sample string 13",<br /> "anchorCaseSensitive": "sample string 14",<br /> "anchorMatchWholeWord": "sample string 15",<br /> "anchorHorizontalAlignment": "sample string 16",<br /> "tabId": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "conditionalParentLabel": "sample string 20",<br /> "conditionalParentValue": "sample string 21",<br /> "customTabId": "sample string 22",<br /> "mergeField": {},<br /> "tooltip": "sample string 23",<br /> "tabOrder": "sample string 24",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "approveTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "tabLabel": "sample string 4",<br /> "font": "sample string 5",<br /> "bold": "sample string 6",<br /> "italic": "sample string 7",<br /> "underline": "sample string 8",<br /> "fontColor": "sample string 9",<br /> "fontSize": "sample string 10",<br /> "documentId": "sample string 11",<br /> "recipientId": "sample string 12",<br /> "pageNumber": "sample string 13",<br /> "xPosition": "sample string 14",<br /> "yPosition": "sample string 15",<br /> "anchorString": "sample string 16",<br /> "anchorXOffset": "sample string 17",<br /> "anchorYOffset": "sample string 18",<br /> "anchorUnits": "sample string 19",<br /> "anchorIgnoreIfNotPresent": "sample string 20",<br /> "anchorCaseSensitive": "sample string 21",<br /> "anchorMatchWholeWord": "sample string 22",<br /> "anchorHorizontalAlignment": "sample string 23",<br /> "tabId": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "conditionalParentLabel": "sample string 27",<br /> "conditionalParentValue": "sample string 28",<br /> "customTabId": "sample string 29",<br /> "mergeField": {},<br /> "tooltip": "sample string 30",<br /> "tabOrder": "sample string 31",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "declineTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "declineReason": "sample string 4",<br /> "tabLabel": "sample string 5",<br /> "font": "sample string 6",<br /> "bold": "sample string 7",<br /> "italic": "sample string 8",<br /> "underline": "sample string 9",<br /> "fontColor": "sample string 10",<br /> "fontSize": "sample string 11",<br /> "documentId": "sample string 12",<br /> "recipientId": "sample string 13",<br /> "pageNumber": "sample string 14",<br /> "xPosition": "sample string 15",<br /> "yPosition": "sample string 16",<br /> "anchorString": "sample string 17",<br /> "anchorXOffset": "sample string 18",<br /> "anchorYOffset": "sample string 19",<br /> "anchorUnits": "sample string 20",<br /> "anchorIgnoreIfNotPresent": "sample string 21",<br /> "anchorCaseSensitive": "sample string 22",<br /> "anchorMatchWholeWord": "sample string 23",<br /> "anchorHorizontalAlignment": "sample string 24",<br /> "tabId": "sample string 25",<br /> "templateLocked": "sample string 26",<br /> "templateRequired": "sample string 27",<br /> "conditionalParentLabel": "sample string 28",<br /> "conditionalParentValue": "sample string 29",<br /> "customTabId": "sample string 30",<br /> "mergeField": {},<br /> "tooltip": "sample string 31",<br /> "tabOrder": "sample string 32",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "viewTabs": [<br /> {<br /> "buttonText": "sample string 1",<br /> "width": 2,<br /> "height": 3,<br /> "required": "sample string 4",<br /> "requiredRead": "sample string 5",<br /> "tabLabel": "sample string 6",<br /> "font": "sample string 7",<br /> "bold": "sample string 8",<br /> "italic": "sample string 9",<br /> "underline": "sample string 10",<br /> "fontColor": "sample string 11",<br /> "fontSize": "sample string 12",<br /> "documentId": "sample string 13",<br /> "recipientId": "sample string 14",<br /> "pageNumber": "sample string 15",<br /> "xPosition": "sample string 16",<br /> "yPosition": "sample string 17",<br /> "anchorString": "sample string 18",<br /> "anchorXOffset": "sample string 19",<br /> "anchorYOffset": "sample string 20",<br /> "anchorUnits": "sample string 21",<br /> "anchorIgnoreIfNotPresent": "sample string 22",<br /> "anchorCaseSensitive": "sample string 23",<br /> "anchorMatchWholeWord": "sample string 24",<br /> "anchorHorizontalAlignment": "sample string 25",<br /> "tabId": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "conditionalParentLabel": "sample string 29",<br /> "conditionalParentValue": "sample string 30",<br /> "customTabId": "sample string 31",<br /> "mergeField": {},<br /> "tooltip": "sample string 32",<br /> "tabOrder": "sample string 33",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "fullNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "dateSignedTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "envelopeIdTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "font": "sample string 3",<br /> "bold": "sample string 4",<br /> "italic": "sample string 5",<br /> "underline": "sample string 6",<br /> "fontColor": "sample string 7",<br /> "fontSize": "sample string 8",<br /> "documentId": "sample string 9",<br /> "recipientId": "sample string 10",<br /> "pageNumber": "sample string 11",<br /> "xPosition": "sample string 12",<br /> "yPosition": "sample string 13",<br /> "anchorString": "sample string 14",<br /> "anchorXOffset": "sample string 15",<br /> "anchorYOffset": "sample string 16",<br /> "anchorUnits": "sample string 17",<br /> "anchorIgnoreIfNotPresent": "sample string 18",<br /> "anchorCaseSensitive": "sample string 19",<br /> "anchorMatchWholeWord": "sample string 20",<br /> "anchorHorizontalAlignment": "sample string 21",<br /> "tabId": "sample string 22",<br /> "templateLocked": "sample string 23",<br /> "templateRequired": "sample string 24",<br /> "conditionalParentLabel": "sample string 25",<br /> "conditionalParentValue": "sample string 26",<br /> "customTabId": "sample string 27",<br /> "mergeField": {},<br /> "tooltip": "sample string 28",<br /> "tabOrder": "sample string 29",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "companyTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3",<br /> "width": 4,<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "concealValueOnDocument": "sample string 7",<br /> "disableAutoSize": "sample string 8",<br /> "maxLength": 9,<br /> "tabLabel": "sample string 10",<br /> "font": "sample string 11",<br /> "bold": "sample string 12",<br /> "italic": "sample string 13",<br /> "underline": "sample string 14",<br /> "fontColor": "sample string 15",<br /> "fontSize": "sample string 16",<br /> "documentId": "sample string 17",<br /> "recipientId": "sample string 18",<br /> "pageNumber": "sample string 19",<br /> "xPosition": "sample string 20",<br /> "yPosition": "sample string 21",<br /> "anchorString": "sample string 22",<br /> "anchorXOffset": "sample string 23",<br /> "anchorYOffset": "sample string 24",<br /> "anchorUnits": "sample string 25",<br /> "anchorIgnoreIfNotPresent": "sample string 26",<br /> "anchorCaseSensitive": "sample string 27",<br /> "anchorMatchWholeWord": "sample string 28",<br /> "anchorHorizontalAlignment": "sample string 29",<br /> "tabId": "sample string 30",<br /> "templateLocked": "sample string 31",<br /> "templateRequired": "sample string 32",<br /> "conditionalParentLabel": "sample string 33",<br /> "conditionalParentValue": "sample string 34",<br /> "customTabId": "sample string 35",<br /> "mergeField": {},<br /> "tooltip": "sample string 36",<br /> "tabOrder": "sample string 37",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "titleTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3",<br /> "width": 4,<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "concealValueOnDocument": "sample string 7",<br /> "disableAutoSize": "sample string 8",<br /> "maxLength": 9,<br /> "tabLabel": "sample string 10",<br /> "font": "sample string 11",<br /> "bold": "sample string 12",<br /> "italic": "sample string 13",<br /> "underline": "sample string 14",<br /> "fontColor": "sample string 15",<br /> "fontSize": "sample string 16",<br /> "documentId": "sample string 17",<br /> "recipientId": "sample string 18",<br /> "pageNumber": "sample string 19",<br /> "xPosition": "sample string 20",<br /> "yPosition": "sample string 21",<br /> "anchorString": "sample string 22",<br /> "anchorXOffset": "sample string 23",<br /> "anchorYOffset": "sample string 24",<br /> "anchorUnits": "sample string 25",<br /> "anchorIgnoreIfNotPresent": "sample string 26",<br /> "anchorCaseSensitive": "sample string 27",<br /> "anchorMatchWholeWord": "sample string 28",<br /> "anchorHorizontalAlignment": "sample string 29",<br /> "tabId": "sample string 30",<br /> "templateLocked": "sample string 31",<br /> "templateRequired": "sample string 32",<br /> "conditionalParentLabel": "sample string 33",<br /> "conditionalParentValue": "sample string 34",<br /> "customTabId": "sample string 35",<br /> "mergeField": {},<br /> "tooltip": "sample string 36",<br /> "tabOrder": "sample string 37",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "textTabs": [<br /> {<br /> "height": 1,<br /> "isPaymentAmount": "sample string 2",<br /> "formula": "sample string 3",<br /> "validationPattern": "sample string 4",<br /> "validationMessage": "sample string 5",<br /> "shared": "sample string 6",<br /> "requireInitialOnSharedChange": "sample string 7",<br /> "senderRequired": "sample string 8",<br /> "requireAll": "sample string 9",<br /> "name": "sample string 10",<br /> "value": "sample string 11",<br /> "originalValue": "sample string 12",<br /> "width": 13,<br /> "required": "sample string 14",<br /> "locked": "sample string 15",<br /> "concealValueOnDocument": "sample string 16",<br /> "disableAutoSize": "sample string 17",<br /> "maxLength": 18,<br /> "tabLabel": "sample string 19",<br /> "font": "sample string 20",<br /> "bold": "sample string 21",<br /> "italic": "sample string 22",<br /> "underline": "sample string 23",<br /> "fontColor": "sample string 24",<br /> "fontSize": "sample string 25",<br /> "documentId": "sample string 26",<br /> "recipientId": "sample string 27",<br /> "pageNumber": "sample string 28",<br /> "xPosition": "sample string 29",<br /> "yPosition": "sample string 30",<br /> "anchorString": "sample string 31",<br /> "anchorXOffset": "sample string 32",<br /> "anchorYOffset": "sample string 33",<br /> "anchorUnits": "sample string 34",<br /> "anchorIgnoreIfNotPresent": "sample string 35",<br /> "anchorCaseSensitive": "sample string 36",<br /> "anchorMatchWholeWord": "sample string 37",<br /> "anchorHorizontalAlignment": "sample string 38",<br /> "tabId": "sample string 39",<br /> "templateLocked": "sample string 40",<br /> "templateRequired": "sample string 41",<br /> "conditionalParentLabel": "sample string 42",<br /> "conditionalParentValue": "sample string 43",<br /> "customTabId": "sample string 44",<br /> "mergeField": {},<br /> "tooltip": "sample string 45",<br /> "tabOrder": "sample string 46",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "numberTabs": [<br /> {<br /> "isPaymentAmount": "sample string 1",<br /> "formula": "sample string 2",<br /> "validationPattern": "sample string 3",<br /> "validationMessage": "sample string 4",<br /> "shared": "sample string 5",<br /> "requireInitialOnSharedChange": "sample string 6",<br /> "senderRequired": "sample string 7",<br /> "requireAll": "sample string 8",<br /> "name": "sample string 9",<br /> "value": "sample string 10",<br /> "originalValue": "sample string 11",<br /> "width": 12,<br /> "required": "sample string 13",<br /> "locked": "sample string 14",<br /> "concealValueOnDocument": "sample string 15",<br /> "disableAutoSize": "sample string 16",<br /> "maxLength": 17,<br /> "tabLabel": "sample string 18",<br /> "font": "sample string 19",<br /> "bold": "sample string 20",<br /> "italic": "sample string 21",<br /> "underline": "sample string 22",<br /> "fontColor": "sample string 23",<br /> "fontSize": "sample string 24",<br /> "documentId": "sample string 25",<br /> "recipientId": "sample string 26",<br /> "pageNumber": "sample string 27",<br /> "xPosition": "sample string 28",<br /> "yPosition": "sample string 29",<br /> "anchorString": "sample string 30",<br /> "anchorXOffset": "sample string 31",<br /> "anchorYOffset": "sample string 32",<br /> "anchorUnits": "sample string 33",<br /> "anchorIgnoreIfNotPresent": "sample string 34",<br /> "anchorCaseSensitive": "sample string 35",<br /> "anchorMatchWholeWord": "sample string 36",<br /> "anchorHorizontalAlignment": "sample string 37",<br /> "tabId": "sample string 38",<br /> "templateLocked": "sample string 39",<br /> "templateRequired": "sample string 40",<br /> "conditionalParentLabel": "sample string 41",<br /> "conditionalParentValue": "sample string 42",<br /> "customTabId": "sample string 43",<br /> "mergeField": {},<br /> "tooltip": "sample string 44",<br /> "tabOrder": "sample string 45",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "ssnTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "dateTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "zipTabs": [<br /> {<br /> "useDash4": "sample string 1",<br /> "validationPattern": "sample string 2",<br /> "validationMessage": "sample string 3",<br /> "shared": "sample string 4",<br /> "requireInitialOnSharedChange": "sample string 5",<br /> "senderRequired": "sample string 6",<br /> "requireAll": "sample string 7",<br /> "name": "sample string 8",<br /> "value": "sample string 9",<br /> "originalValue": "sample string 10",<br /> "width": 11,<br /> "required": "sample string 12",<br /> "locked": "sample string 13",<br /> "concealValueOnDocument": "sample string 14",<br /> "disableAutoSize": "sample string 15",<br /> "maxLength": 16,<br /> "tabLabel": "sample string 17",<br /> "font": "sample string 18",<br /> "bold": "sample string 19",<br /> "italic": "sample string 20",<br /> "underline": "sample string 21",<br /> "fontColor": "sample string 22",<br /> "fontSize": "sample string 23",<br /> "documentId": "sample string 24",<br /> "recipientId": "sample string 25",<br /> "pageNumber": "sample string 26",<br /> "xPosition": "sample string 27",<br /> "yPosition": "sample string 28",<br /> "anchorString": "sample string 29",<br /> "anchorXOffset": "sample string 30",<br /> "anchorYOffset": "sample string 31",<br /> "anchorUnits": "sample string 32",<br /> "anchorIgnoreIfNotPresent": "sample string 33",<br /> "anchorCaseSensitive": "sample string 34",<br /> "anchorMatchWholeWord": "sample string 35",<br /> "anchorHorizontalAlignment": "sample string 36",<br /> "tabId": "sample string 37",<br /> "templateLocked": "sample string 38",<br /> "templateRequired": "sample string 39",<br /> "conditionalParentLabel": "sample string 40",<br /> "conditionalParentValue": "sample string 41",<br /> "customTabId": "sample string 42",<br /> "mergeField": {},<br /> "tooltip": "sample string 43",<br /> "tabOrder": "sample string 44",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "emailTabs": [<br /> {<br /> "validationPattern": "sample string 1",<br /> "validationMessage": "sample string 2",<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "senderRequired": "sample string 5",<br /> "requireAll": "sample string 6",<br /> "name": "sample string 7",<br /> "value": "sample string 8",<br /> "originalValue": "sample string 9",<br /> "width": 10,<br /> "required": "sample string 11",<br /> "locked": "sample string 12",<br /> "concealValueOnDocument": "sample string 13",<br /> "disableAutoSize": "sample string 14",<br /> "maxLength": 15,<br /> "tabLabel": "sample string 16",<br /> "font": "sample string 17",<br /> "bold": "sample string 18",<br /> "italic": "sample string 19",<br /> "underline": "sample string 20",<br /> "fontColor": "sample string 21",<br /> "fontSize": "sample string 22",<br /> "documentId": "sample string 23",<br /> "recipientId": "sample string 24",<br /> "pageNumber": "sample string 25",<br /> "xPosition": "sample string 26",<br /> "yPosition": "sample string 27",<br /> "anchorString": "sample string 28",<br /> "anchorXOffset": "sample string 29",<br /> "anchorYOffset": "sample string 30",<br /> "anchorUnits": "sample string 31",<br /> "anchorIgnoreIfNotPresent": "sample string 32",<br /> "anchorCaseSensitive": "sample string 33",<br /> "anchorMatchWholeWord": "sample string 34",<br /> "anchorHorizontalAlignment": "sample string 35",<br /> "tabId": "sample string 36",<br /> "templateLocked": "sample string 37",<br /> "templateRequired": "sample string 38",<br /> "conditionalParentLabel": "sample string 39",<br /> "conditionalParentValue": "sample string 40",<br /> "customTabId": "sample string 41",<br /> "mergeField": {},<br /> "tooltip": "sample string 42",<br /> "tabOrder": "sample string 43",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "noteTabs": [<br /> {<br /> "width": 1,<br /> "height": 2,<br /> "shared": "sample string 3",<br /> "value": "sample string 4",<br /> "name": "sample string 5",<br /> "tabLabel": "sample string 6",<br /> "font": "sample string 7",<br /> "bold": "sample string 8",<br /> "italic": "sample string 9",<br /> "underline": "sample string 10",<br /> "fontColor": "sample string 11",<br /> "fontSize": "sample string 12",<br /> "documentId": "sample string 13",<br /> "recipientId": "sample string 14",<br /> "pageNumber": "sample string 15",<br /> "xPosition": "sample string 16",<br /> "yPosition": "sample string 17",<br /> "anchorString": "sample string 18",<br /> "anchorXOffset": "sample string 19",<br /> "anchorYOffset": "sample string 20",<br /> "anchorUnits": "sample string 21",<br /> "anchorIgnoreIfNotPresent": "sample string 22",<br /> "anchorCaseSensitive": "sample string 23",<br /> "anchorMatchWholeWord": "sample string 24",<br /> "anchorHorizontalAlignment": "sample string 25",<br /> "tabId": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "conditionalParentLabel": "sample string 29",<br /> "conditionalParentValue": "sample string 30",<br /> "customTabId": "sample string 31",<br /> "mergeField": {},<br /> "tooltip": "sample string 32",<br /> "tabOrder": "sample string 33",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "checkboxTabs": [<br /> {<br /> "name": "sample string 1",<br /> "tabLabel": "sample string 2",<br /> "selected": "sample string 3",<br /> "shared": "sample string 4",<br /> "requireInitialOnSharedChange": "sample string 5",<br /> "required": "sample string 6",<br /> "locked": "sample string 7",<br /> "documentId": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "pageNumber": "sample string 10",<br /> "xPosition": "sample string 11",<br /> "yPosition": "sample string 12",<br /> "anchorString": "sample string 13",<br /> "anchorXOffset": "sample string 14",<br /> "anchorYOffset": "sample string 15",<br /> "anchorUnits": "sample string 16",<br /> "anchorIgnoreIfNotPresent": "sample string 17",<br /> "anchorCaseSensitive": "sample string 18",<br /> "anchorMatchWholeWord": "sample string 19",<br /> "anchorHorizontalAlignment": "sample string 20",<br /> "tabId": "sample string 21",<br /> "templateLocked": "sample string 22",<br /> "templateRequired": "sample string 23",<br /> "conditionalParentLabel": "sample string 24",<br /> "conditionalParentValue": "sample string 25",<br /> "customTabId": "sample string 26",<br /> "mergeField": {},<br /> "tooltip": "sample string 27",<br /> "tabOrder": "sample string 28",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "radioGroupTabs": [<br /> {<br /> "documentId": "sample string 1",<br /> "recipientId": "sample string 2",<br /> "templateLocked": "sample string 3",<br /> "templateRequired": "sample string 4",<br /> "conditionalParentLabel": "sample string 5",<br /> "conditionalParentValue": "sample string 6",<br /> "groupName": "sample string 7",<br /> "radios": [<br /> {<br /> "pageNumber": "sample string 1",<br /> "xPosition": "sample string 2",<br /> "yPosition": "sample string 3",<br /> "anchorString": "sample string 4",<br /> "anchorXOffset": "sample string 5",<br /> "anchorYOffset": "sample string 6",<br /> "anchorUnits": "sample string 7",<br /> "anchorIgnoreIfNotPresent": "sample string 8",<br /> "anchorCaseSensitive": "sample string 9",<br /> "anchorMatchWholeWord": "sample string 10",<br /> "anchorHorizontalAlignment": "sample string 11",<br /> "value": "sample string 12",<br /> "selected": "sample string 13",<br /> "tabId": "sample string 14",<br /> "required": "sample string 15",<br /> "locked": "sample string 16",<br /> "tabOrder": "sample string 17"<br /> }<br /> ],<br /> "shared": "sample string 8",<br /> "requireInitialOnSharedChange": "sample string 9",<br /> "requireAll": "sample string 10",<br /> "tooltip": "sample string 11"<br /> }<br /> ],<br /> "listTabs": [<br /> {<br /> "listItems": [<br /> {<br /> "text": "sample string 1",<br /> "value": "sample string 2",<br /> "selected": "sample string 3"<br /> }<br /> ],<br /> "value": "sample string 1",<br /> "width": 2,<br /> "shared": "sample string 3",<br /> "requireInitialOnSharedChange": "sample string 4",<br /> "required": "sample string 5",<br /> "locked": "sample string 6",<br /> "senderRequired": "sample string 7",<br /> "requireAll": "sample string 8",<br /> "tabLabel": "sample string 9",<br /> "font": "sample string 10",<br /> "bold": "sample string 11",<br /> "italic": "sample string 12",<br /> "underline": "sample string 13",<br /> "fontColor": "sample string 14",<br /> "fontSize": "sample string 15",<br /> "documentId": "sample string 16",<br /> "recipientId": "sample string 17",<br /> "pageNumber": "sample string 18",<br /> "xPosition": "sample string 19",<br /> "yPosition": "sample string 20",<br /> "anchorString": "sample string 21",<br /> "anchorXOffset": "sample string 22",<br /> "anchorYOffset": "sample string 23",<br /> "anchorUnits": "sample string 24",<br /> "anchorIgnoreIfNotPresent": "sample string 25",<br /> "anchorCaseSensitive": "sample string 26",<br /> "anchorMatchWholeWord": "sample string 27",<br /> "anchorHorizontalAlignment": "sample string 28",<br /> "tabId": "sample string 29",<br /> "templateLocked": "sample string 30",<br /> "templateRequired": "sample string 31",<br /> "conditionalParentLabel": "sample string 32",<br /> "conditionalParentValue": "sample string 33",<br /> "customTabId": "sample string 34",<br /> "mergeField": {},<br /> "tooltip": "sample string 35",<br /> "tabOrder": "sample string 36",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "firstNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "lastNameTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "emailAddressTabs": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "tabLabel": "sample string 3",<br /> "font": "sample string 4",<br /> "bold": "sample string 5",<br /> "italic": "sample string 6",<br /> "underline": "sample string 7",<br /> "fontColor": "sample string 8",<br /> "fontSize": "sample string 9",<br /> "documentId": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "pageNumber": "sample string 12",<br /> "xPosition": "sample string 13",<br /> "yPosition": "sample string 14",<br /> "anchorString": "sample string 15",<br /> "anchorXOffset": "sample string 16",<br /> "anchorYOffset": "sample string 17",<br /> "anchorUnits": "sample string 18",<br /> "anchorIgnoreIfNotPresent": "sample string 19",<br /> "anchorCaseSensitive": "sample string 20",<br /> "anchorMatchWholeWord": "sample string 21",<br /> "anchorHorizontalAlignment": "sample string 22",<br /> "tabId": "sample string 23",<br /> "templateLocked": "sample string 24",<br /> "templateRequired": "sample string 25",<br /> "conditionalParentLabel": "sample string 26",<br /> "conditionalParentValue": "sample string 27",<br /> "customTabId": "sample string 28",<br /> "mergeField": {},<br /> "tooltip": "sample string 29",<br /> "tabOrder": "sample string 30",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "formulaTabs": [<br /> {<br /> "isPaymentAmount": "sample string 1",<br /> "formula": "sample string 2",<br /> "roundDecimalPlaces": "sample string 3",<br /> "paymentDetails": {<br /> "total": {<br /> "amountInBaseUnit": "sample string 1",<br /> "currency": "sample string 2",<br /> "displayAmount": "sample string 3"<br /> },<br /> "status": "sample string 1",<br /> "currencyCode": "sample string 2",<br /> "lineItems": [<br /> {<br /> "name": "sample string 1",<br /> "description": "sample string 2",<br /> "itemCode": "sample string 3",<br /> "amountReference": "sample string 4"<br /> }<br /> ],<br /> "allowedPaymentMethods": [<br /> "sample string 1"<br /> ],<br /> "gatewayAccountId": "sample string 3",<br /> "gatewayName": "sample string 4",<br /> "gatewayDisplayName": "sample string 5",<br /> "chargeId": "sample string 6",<br /> "paymentOption": "sample string 7",<br /> "customMetadataRequired": true,<br /> "customMetadata": "sample string 9",<br /> "customerId": "sample string 10",<br /> "paymentSourceId": "sample string 11",<br /> "signerValues": {<br /> "paymentOption": "sample string 1"<br /> },<br /> "subGatewayName": "sample string 12"<br /> },<br /> "hidden": "sample string 4",<br /> "validationPattern": "sample string 5",<br /> "validationMessage": "sample string 6",<br /> "shared": "sample string 7",<br /> "requireInitialOnSharedChange": "sample string 8",<br /> "senderRequired": "sample string 9",<br /> "requireAll": "sample string 10",<br /> "name": "sample string 11",<br /> "value": "sample string 12",<br /> "originalValue": "sample string 13",<br /> "width": 14,<br /> "required": "sample string 15",<br /> "locked": "sample string 16",<br /> "concealValueOnDocument": "sample string 17",<br /> "disableAutoSize": "sample string 18",<br /> "maxLength": 19,<br /> "tabLabel": "sample string 20",<br /> "font": "sample string 21",<br /> "bold": "sample string 22",<br /> "italic": "sample string 23",<br /> "underline": "sample string 24",<br /> "fontColor": "sample string 25",<br /> "fontSize": "sample string 26",<br /> "documentId": "sample string 27",<br /> "recipientId": "sample string 28",<br /> "pageNumber": "sample string 29",<br /> "xPosition": "sample string 30",<br /> "yPosition": "sample string 31",<br /> "anchorString": "sample string 32",<br /> "anchorXOffset": "sample string 33",<br /> "anchorYOffset": "sample string 34",<br /> "anchorUnits": "sample string 35",<br /> "anchorIgnoreIfNotPresent": "sample string 36",<br /> "anchorCaseSensitive": "sample string 37",<br /> "anchorMatchWholeWord": "sample string 38",<br /> "anchorHorizontalAlignment": "sample string 39",<br /> "tabId": "sample string 40",<br /> "templateLocked": "sample string 41",<br /> "templateRequired": "sample string 42",<br /> "conditionalParentLabel": "sample string 43",<br /> "conditionalParentValue": "sample string 44",<br /> "customTabId": "sample string 45",<br /> "mergeField": {},<br /> "tooltip": "sample string 46",<br /> "tabOrder": "sample string 47",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "notarizeTabs": [<br /> {<br /> "required": "sample string 1",<br /> "locked": "sample string 2",<br /> "documentId": "sample string 3",<br /> "recipientId": "sample string 4",<br /> "pageNumber": "sample string 5",<br /> "xPosition": "sample string 6",<br /> "yPosition": "sample string 7",<br /> "anchorString": "sample string 8",<br /> "anchorXOffset": "sample string 9",<br /> "anchorYOffset": "sample string 10",<br /> "anchorUnits": "sample string 11",<br /> "anchorIgnoreIfNotPresent": "sample string 12",<br /> "anchorCaseSensitive": "sample string 13",<br /> "anchorMatchWholeWord": "sample string 14",<br /> "anchorHorizontalAlignment": "sample string 15",<br /> "tabId": "sample string 16",<br /> "templateLocked": "sample string 17",<br /> "templateRequired": "sample string 18",<br /> "conditionalParentLabel": "sample string 19",<br /> "conditionalParentValue": "sample string 20",<br /> "customTabId": "sample string 21",<br /> "mergeField": {},<br /> "tooltip": "sample string 22",<br /> "tabOrder": "sample string 23",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ],<br /> "smartSectionTabs": [<br /> {<br /> "startAnchor": "sample string 1",<br /> "endAnchor": "sample string 2",<br /> "removeStartAnchor": true,<br /> "removeEndAnchor": true,<br /> "caseSensitive": true,<br /> "startPosition": {<br /> "xPosition": 1.1,<br /> "yPosition": 2.1,<br /> "pageNumber": 3<br /> },<br /> "endPosition": {<br /> "xPosition": 0,<br /> "yPosition": 0<br /> },<br /> "displaySettings": {<br /> "displayLabel": "sample string 1",<br /> "display": "sample string 2",<br /> "displayPageNumber": 3,<br /> "displayOrder": 4,<br /> "tableStyle": "sample string 5",<br /> "cellStyle": "sample string 6",<br /> "inlineOuterStyle": "sample string 7",<br /> "hideLabelWhenOpened": true,<br /> "scrollToTopWhenOpened": true,<br /> "labelWhenOpened": "sample string 10",<br /> "preLabel": "sample string 11",<br /> "collapsibleSettings": {<br /> "containerStyle": "sample string 1",<br /> "outerLabelAndArrowStyle": "sample string 2",<br /> "labelStyle": "sample string 3",<br /> "arrowStyle": "sample string 4",<br /> "arrowClosed": "sample string 5",<br /> "arrowOpen": "sample string 6",<br /> "arrowLocation": "sample string 7",<br /> "arrowColor": "sample string 8",<br /> "arrowSize": "sample string 9",<br /> "onlyArrowIsClickable": true<br /> }<br /> },<br /> "documentId": "sample string 6",<br /> "recipientId": "sample string 7",<br /> "pageNumber": "sample string 8",<br /> "xPosition": "sample string 9",<br /> "yPosition": "sample string 10",<br /> "anchorString": "sample string 11",<br /> "anchorXOffset": "sample string 12",<br /> "anchorYOffset": "sample string 13",<br /> "anchorUnits": "sample string 14",<br /> "anchorIgnoreIfNotPresent": "sample string 15",<br /> "anchorCaseSensitive": "sample string 16",<br /> "anchorMatchWholeWord": "sample string 17",<br /> "anchorHorizontalAlignment": "sample string 18",<br /> "tabId": "sample string 19",<br /> "templateLocked": "sample string 20",<br /> "templateRequired": "sample string 21",<br /> "conditionalParentLabel": "sample string 22",<br /> "conditionalParentValue": "sample string 23",<br /> "customTabId": "sample string 24",<br /> "mergeField": {},<br /> "tooltip": "sample string 25",<br /> "tabOrder": "sample string 26",<br /> "tabGroupLabels": [<br /> "sample string 1"<br /> ]<br /> }<br /> ]<br /> },<br /> "signInEachLocation": "sample string 3",<br /> "offlineAttributes": {<br /> "deviceName": "sample string 1",<br /> "deviceModel": "sample string 2",<br /> "gpsLatitude": "sample string 3",<br /> "gpsLongitude": "sample string 4",<br /> "accountEsignId": "sample string 5",<br /> "offlineSigningHash": "sample string 6"<br /> },<br /> "requireSignerCertificate": "sample string 4",<br /> "requireSignOnPaper": "sample string 5",<br /> "canSignOffline": "sample string 6",<br /> "isBulkRecipient": "sample string 7",<br /> "bulkRecipientsUri": "sample string 8",<br /> "recipientSuppliesTabs": "sample string 9",<br /> "recipientSignatureProviders": [<br /> {<br /> "sealName": "sample string 1",<br /> "sealDocumentsWithTabsOnly": "sample string 2",<br /> "signatureProviderName": "sample string 3",<br /> "signatureProviderOptions": {<br /> "sms": "sample string 1",<br /> "oneTimePassword": "sample string 2",<br /> "cpfNumber": "sample string 3",<br /> "signerRole": "sample string 4"<br /> }<br /> }<br /> ],<br /> "agentCanEditEmail": "sample string 10",<br /> "agentCanEditName": "sample string 11",<br /> "proofFile": {<br /> "isInProofFile": "sample string 1",<br /> "hasIdentityAttempts": "sample string 2"<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 12",<br /> "email": "sample string 13",<br /> "emailRecipientPostSigningURL": "sample string 14",<br /> "signingGroupId": "sample string 15",<br /> "signingGroupName": "sample string 16",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 17",<br /> "firstName": "sample string 18",<br /> "lastName": "sample string 19",<br /> "recipientId": "sample string 20",<br /> "recipientIdGuid": "sample string 21",<br /> "accessCode": "sample string 22",<br /> "addAccessCodeToEmail": "sample string 23",<br /> "requireIdLookup": "sample string 24",<br /> "idCheckConfigurationName": "sample string 25",<br /> "socialAuthentications": [<br /> {<br /> "authentication": "sample string 1"<br /> }<br /> ],<br /> "phoneAuthentication": {<br /> "recipMayProvideNumber": "sample string 1",<br /> "validateRecipProvidedNumber": "sample string 2",<br /> "recordVoicePrint": "sample string 3",<br /> "senderProvidedNumbers": [<br /> "sample string 1"<br /> ]<br /> },<br /> "samlAuthentication": {<br /> "samlAssertionAttributes": [<br /> {<br /> "name": "sample string 1",<br /> "value": "sample string 2",<br /> "originalValue": "sample string 3"<br /> }<br /> ]<br /> },<br /> "smsAuthentication": {<br /> "senderProvidedNumbers": [<br /> "sample string 1"<br /> ]<br /> },<br /> "identityVerification": {<br /> "workflowId": "sample string 1",<br /> "inputOptions": [<br /> {<br /> "name": "sample string 1",<br /> "valueType": "sample string 2",<br /> "phoneNumberList": [<br /> {<br /> "countryCodeLock": true,<br /> "countryCode": "sample string 2",<br /> "number": "sample string 3",<br /> "extension": "sample string 4"<br /> }<br /> ]<br /> }<br /> ]<br /> },<br /> "userId": "sample string 26",<br /> "clientUserId": "sample string 27",<br /> "embeddedRecipientStartURL": "sample string 28",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 29",<br /> "idCheckInformationInput": {<br /> "addressInformationInput": {<br /> "addressInformation": {<br /> "street1": "sample string 1",<br /> "street2": "sample string 2",<br /> "city": "sample string 3",<br /> "state": "sample string 4",<br /> "zip": "sample string 5",<br /> "phone": "sample string 6",<br /> "fax": "sample string 7",<br /> "country": "sample string 8",<br /> "zipPlus4": "sample string 9"<br /> },<br /> "displayLevelCode": "sample string 1",<br /> "receiveInResponse": "sample string 2"<br /> },<br /> "dobInformationInput": {<br /> "dateOfBirth": "sample string 1",<br /> "displayLevelCode": "sample string 2",<br /> "receiveInResponse": "sample string 3"<br /> },<br /> "ssn4InformationInput": {<br /> "ssn4": "sample string 1",<br /> "displayLevelCode": "sample string 2",<br /> "receiveInResponse": "sample string 3"<br /> },<br /> "ssn9InformationInput": {<br /> "ssn9": "sample string 1",<br /> "displayLevelCode": "sample string 2"<br /> }<br /> },<br /> "recipientAttachments": [<br /> {<br /> "attachmentId": "sample string 1",<br /> "label": "sample string 2",<br /> "attachmentType": "sample string 3",<br /> "name": "sample string 4",<br /> "data": "sample string 5",<br /> "remoteUrl": "sample string 6"<br /> }<br /> ],<br /> "note": "sample string 30",<br /> "roleName": "sample string 31",<br /> "status": "sample string 32",<br /> "declinedReason": "sample string 33",<br /> "deliveryMethod": "sample string 34",<br /> "faxNumber": "sample string 35",<br /> "templateLocked": "sample string 36",<br /> "templateRequired": "sample string 37",<br /> "emailNotification": {<br /> "emailSubject": "sample string 1",<br /> "emailBody": "sample string 2",<br /> "supportedLanguage": "sample string 3"<br /> },<br /> "inheritEmailNotificationConfiguration": "sample string 38",<br /> "documentVisibility": [<br /> {<br /> "recipientId": "sample string 1",<br /> "documentId": "sample string 2",<br /> "visible": "sample string 3",<br /> "rights": "sample string 4"<br /> }<br /> ]<br /> }<br /> ],<br /> "agents": [<br /> {<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "editors": [<br /> {<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "intermediaries": [<br /> {<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "emailRecipientPostSigningURL": "sample string 3",<br /> "signingGroupId": "sample string 4",<br /> "signingGroupName": "sample string 5",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 6",<br /> "firstName": "sample string 7",<br /> "lastName": "sample string 8",<br /> "recipientId": "sample string 9",<br /> "recipientIdGuid": "sample string 10",<br /> "accessCode": "sample string 11",<br /> "addAccessCodeToEmail": "sample string 12",<br /> "requireIdLookup": "sample string 13",<br /> "idCheckConfigurationName": "sample string 14",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 15",<br /> "clientUserId": "sample string 16",<br /> "embeddedRecipientStartURL": "sample string 17",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 18",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 19",<br /> "roleName": "sample string 20",<br /> "status": "sample string 21",<br /> "declinedReason": "sample string 22",<br /> "deliveryMethod": "sample string 23",<br /> "faxNumber": "sample string 24",<br /> "templateLocked": "sample string 25",<br /> "templateRequired": "sample string 26",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 27",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "carbonCopies": [<br /> {<br /> "agentCanEditEmail": "sample string 1",<br /> "agentCanEditName": "sample string 2",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 3",<br /> "email": "sample string 4",<br /> "emailRecipientPostSigningURL": "sample string 5",<br /> "signingGroupId": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 8",<br /> "firstName": "sample string 9",<br /> "lastName": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "recipientIdGuid": "sample string 12",<br /> "accessCode": "sample string 13",<br /> "addAccessCodeToEmail": "sample string 14",<br /> "requireIdLookup": "sample string 15",<br /> "idCheckConfigurationName": "sample string 16",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 17",<br /> "clientUserId": "sample string 18",<br /> "embeddedRecipientStartURL": "sample string 19",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 20",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 21",<br /> "roleName": "sample string 22",<br /> "status": "sample string 23",<br /> "declinedReason": "sample string 24",<br /> "deliveryMethod": "sample string 25",<br /> "faxNumber": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 29",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "certifiedDeliveries": [<br /> {<br /> "agentCanEditEmail": "sample string 1",<br /> "agentCanEditName": "sample string 2",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 3",<br /> "email": "sample string 4",<br /> "emailRecipientPostSigningURL": "sample string 5",<br /> "signingGroupId": "sample string 6",<br /> "signingGroupName": "sample string 7",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 8",<br /> "firstName": "sample string 9",<br /> "lastName": "sample string 10",<br /> "recipientId": "sample string 11",<br /> "recipientIdGuid": "sample string 12",<br /> "accessCode": "sample string 13",<br /> "addAccessCodeToEmail": "sample string 14",<br /> "requireIdLookup": "sample string 15",<br /> "idCheckConfigurationName": "sample string 16",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 17",<br /> "clientUserId": "sample string 18",<br /> "embeddedRecipientStartURL": "sample string 19",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 20",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 21",<br /> "roleName": "sample string 22",<br /> "status": "sample string 23",<br /> "declinedReason": "sample string 24",<br /> "deliveryMethod": "sample string 25",<br /> "faxNumber": "sample string 26",<br /> "templateLocked": "sample string 27",<br /> "templateRequired": "sample string 28",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 29",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "inPersonSigners": [<br /> {<br /> "hostName": "sample string 1",<br /> "hostEmail": "sample string 2",<br /> "signerName": "sample string 3",<br /> "signerEmail": "sample string 4",<br /> "signatureInfo": {},<br /> "autoNavigation": "sample string 5",<br /> "defaultRecipient": "sample string 6",<br /> "offlineAttributes": {},<br /> "tabs": {},<br /> "signInEachLocation": "sample string 7",<br /> "requireSignerCertificate": "sample string 8",<br /> "requireSignOnPaper": "sample string 9",<br /> "canSignOffline": "sample string 10",<br /> "recipientSuppliesTabs": "sample string 11",<br /> "signingGroupId": "sample string 12",<br /> "signingGroupName": "sample string 13",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "notaryHost": {<br /> "name": "sample string 1",<br /> "email": "sample string 2",<br /> "hostRecipientId": "sample string 3",<br /> "tabs": {},<br /> "recipientId": "sample string 4",<br /> "recipientIdGuid": "sample string 5",<br /> "accessCode": "sample string 6",<br /> "addAccessCodeToEmail": "sample string 7",<br /> "requireIdLookup": "sample string 8",<br /> "idCheckConfigurationName": "sample string 9",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 10",<br /> "clientUserId": "sample string 11",<br /> "embeddedRecipientStartURL": "sample string 12",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 13",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 14",<br /> "roleName": "sample string 15",<br /> "status": "sample string 16",<br /> "declinedReason": "sample string 17",<br /> "deliveryMethod": "sample string 18",<br /> "faxNumber": "sample string 19",<br /> "templateLocked": "sample string 20",<br /> "templateRequired": "sample string 21",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 22",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> },<br /> "inPersonSigningType": "sample string 14",<br /> "name": "sample string 15",<br /> "email": "sample string 16",<br /> "recipientId": "sample string 17",<br /> "recipientIdGuid": "sample string 18",<br /> "accessCode": "sample string 19",<br /> "addAccessCodeToEmail": "sample string 20",<br /> "requireIdLookup": "sample string 21",<br /> "idCheckConfigurationName": "sample string 22",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 23",<br /> "clientUserId": "sample string 24",<br /> "embeddedRecipientStartURL": "sample string 25",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 26",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 27",<br /> "roleName": "sample string 28",<br /> "status": "sample string 29",<br /> "declinedReason": "sample string 30",<br /> "deliveryMethod": "sample string 31",<br /> "faxNumber": "sample string 32",<br /> "templateLocked": "sample string 33",<br /> "templateRequired": "sample string 34",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 35",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "seals": [<br /> {<br /> "name": "sample string 1",<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "tabs": {},<br /> "recipientId": "sample string 2",<br /> "recipientIdGuid": "sample string 3",<br /> "accessCode": "sample string 4",<br /> "addAccessCodeToEmail": "sample string 5",<br /> "requireIdLookup": "sample string 6",<br /> "idCheckConfigurationName": "sample string 7",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 8",<br /> "clientUserId": "sample string 9",<br /> "embeddedRecipientStartURL": "sample string 10",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 11",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 12",<br /> "roleName": "sample string 13",<br /> "status": "sample string 14",<br /> "declinedReason": "sample string 15",<br /> "deliveryMethod": "sample string 16",<br /> "faxNumber": "sample string 17",<br /> "templateLocked": "sample string 18",<br /> "templateRequired": "sample string 19",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 20",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "witnesses": [<br /> {<br /> "witnessFor": "sample string 1",<br /> "witnessForGuid": "sample string 2",<br /> "signatureInfo": {},<br /> "autoNavigation": "sample string 3",<br /> "defaultRecipient": "sample string 4",<br /> "tabs": {},<br /> "signInEachLocation": "sample string 5",<br /> "offlineAttributes": {},<br /> "requireSignerCertificate": "sample string 6",<br /> "requireSignOnPaper": "sample string 7",<br /> "canSignOffline": "sample string 8",<br /> "isBulkRecipient": "sample string 9",<br /> "bulkRecipientsUri": "sample string 10",<br /> "recipientSuppliesTabs": "sample string 11",<br /> "recipientSignatureProviders": [<br /> {}<br /> ],<br /> "agentCanEditEmail": "sample string 12",<br /> "agentCanEditName": "sample string 13",<br /> "proofFile": {<br /> "isInProofFile": null<br /> },<br /> "excludedDocuments": [<br /> "sample string 1"<br /> ],<br /> "name": "sample string 14",<br /> "email": "sample string 15",<br /> "emailRecipientPostSigningURL": "sample string 16",<br /> "signingGroupId": "sample string 17",<br /> "signingGroupName": "sample string 18",<br /> "signingGroupUsers": [<br /> {}<br /> ],<br /> "fullName": "sample string 19",<br /> "firstName": "sample string 20",<br /> "lastName": "sample string 21",<br /> "recipientId": "sample string 22",<br /> "recipientIdGuid": "sample string 23",<br /> "accessCode": "sample string 24",<br /> "addAccessCodeToEmail": "sample string 25",<br /> "requireIdLookup": "sample string 26",<br /> "idCheckConfigurationName": "sample string 27",<br /> "socialAuthentications": [<br /> {}<br /> ],<br /> "phoneAuthentication": {},<br /> "samlAuthentication": {},<br /> "smsAuthentication": {},<br /> "identityVerification": {},<br /> "userId": "sample string 28",<br /> "clientUserId": "sample string 29",<br /> "embeddedRecipientStartURL": "sample string 30",<br /> "customFields": [<br /> "sample string 1"<br /> ],<br /> "routingOrder": "sample string 31",<br /> "idCheckInformationInput": {},<br /> "recipientAttachments": [<br /> {}<br /> ],<br /> "note": "sample string 32",<br /> "roleName": "sample string 33",<br /> "status": "sample string 34",<br /> "declinedReason": "sample string 35",<br /> "deliveryMethod": "sample string 36",<br /> "faxNumber": "sample string 37",<br /> "templateLocked": "sample string 38",<br /> "templateRequired": "sample string 39",<br /> "emailNotification": {},<br /> "inheritEmailNotificationConfiguration": "sample string 40",<br /> "documentVisibility": [<br /> {}<br /> ]<br /> }<br /> ],<br /> "recipientCount": "sample string 1",<br /> "currentRoutingOrder": "sample string 2"<br /> },<br /> "brandLock": "sample string 38",<br /> "brandId": "sample string 39",<br /> "useDisclosure": "sample string 40",<br /> "emailSettings": {<br /> "replyEmailAddressOverride": "sample string 1",<br /> "replyEmailNameOverride": "sample string 2",<br /> "bccEmailAddresses": [<br /> {<br /> "bccEmailAddressId": "sample string 1",<br /> "email": "sample string 2"<br /> }<br /> ]<br /> },<br /> "purgeState": "sample string 41",<br /> "lockInformation": {<br /> "lockedByUser": {},<br /> "lockedByApp": "sample string 1",<br /> "lockedUntilDateTime": "sample string 2",<br /> "lockDurationInSeconds": "sample string 3",<br /> "lockType": "sample string 4",<br /> "useScratchPad": "sample string 5",<br /> "lockToken": "sample string 6",<br /> "errorDetails": {<br /> "errorCode": "sample string 1",<br /> "message": "sample string 2"<br /> }<br /> },<br /> "is21CFRPart11": "sample string 42",<br /> "disableResponsiveDocument": "sample string 43"<br />}</code> |
| Template ID | The ID of the template.                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |

### Update Template Document

This methods updates an existing template document.

| Input       | Comments                                                                                                                | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| ----------- | ----------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| Connection  |                                                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| JSON Input  | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/templates/templatedocuments/update/ | <code>{<br /> "accessControlListBase64": "base64string",<br /> "accessibility": "accessibility",<br /> "allowComments": "true",<br /> "allowMarkup": "true",<br /> "allowReassign": "true",<br /> "allowRecipientRecursion": "true",<br /> "allowViewHistory": "true",<br /> "asynchronous": "true",<br /> "attachments": [<br /> {<br /> "accessControl": "sender",<br /> "attachmentId": "1234",<br /> "attachmentType": "type",<br /> "data": "base64string",<br /> "label": "label",<br /> "name": "name",<br /> "remoteUrl": "https://www.example.com/path/to/resource"<br /> }<br /> ],<br /> "attachmentsUri": "https://www.example.com/path/to/resourc",<br /> "authoritativeCopy": "true",<br /> "authoritativeCopyDefault": "default",<br /> "autoNavigation": "true",<br /> "brandId": "12345",<br /> "brandLock": "true",<br /> "burnDefaultTabData": "data",<br /> "certificateUri": "https://www.example.com/path/to/resource",<br /> "completedDateTime": "2023-12-25",<br /> "compositeTemplates": [<br /> {<br /> "compositeTemplateId": "1234",<br /> "document": {<br /> "assignTabsToRecipientId": "tabs",<br /> "authoritativeCopy": true,<br /> "display": "modal",<br /> "docGenFormFields": [<br /> {<br /> "description": "description",<br /> "label": "label",<br /> "name": "name",<br /> "options": [<br /> {<br /> "description": "description",<br /> "label": "label",<br /> "selected": "true",<br /> "value": "value"<br /> }<br /> ],<br /> "required": "true",<br /> "type": "Date",<br /> "value": "value",<br /> "validation": {<br /> "errorMessage": "error",<br /> "expression": "="<br /> }<br /> }<br /> ],<br /> "documentBase64": "base64string",<br /> "documentFields": [<br /> {<br /> "name": "name",<br /> "errorDetails": {<br /> "errorCode": "code",<br /> "message": "message"<br /> },<br /> "originalValue": "originalValue",<br /> "value": "value"<br /> }<br /> ],<br /> "documentId": "1234",<br /> "encryptedWithKeyManager": "true",<br /> "fileExtension": "jpg",<br /> "fileFormatHint": "hint",<br /> "htmlDefinition": {<br /> "displayAnchorPrefix": "prefix"<br /> }<br /> }<br /> }<br /> ]<br />}</code> |
| Template ID | The ID of the template.                                                                                                 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| Document ID | The ID of the document to retrieve.                                                                                     |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |

### Update User

To update user information for a specific user, submit a Users object with updated field values in the request body of this operation.

| Input      | Comments                                                                                                | Default                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| ---------- | ------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection |                                                                                                         |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/users/users/update/ | <code>{<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "userType": "sample string 3",<br /> "isAdmin": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "email": "sample string 7",<br /> "password": "sample string 8",<br /> "title": "sample string 9",<br /> "createdDateTime": "sample string 10",<br /> "firstName": "sample string 11",<br /> "middleName": "sample string 12",<br /> "lastName": "sample string 13",<br /> "suffixName": "sample string 14",<br /> "permissionProfileId": "sample string 15",<br /> "permissionProfileName": "sample string 16",<br /> "countryCode": "sample string 17",<br /> "subscribe": "sample string 18",<br /> "userSettings": [<br /> {}<br /> ],<br /> "sendActivationOnInvalidLogin": "sample string 19",<br /> "activationAccessCode": "sample string 20",<br /> "enableConnectForUser": "sample string 21",<br /> "forgottenPasswordInfo": {<br /> "forgottenPasswordQuestion1": "sample string 1",<br /> "forgottenPasswordAnswer1": "sample string 2",<br /> "forgottenPasswordQuestion2": "sample string 3",<br /> "forgottenPasswordAnswer2": "sample string 4",<br /> "forgottenPasswordQuestion3": "sample string 5",<br /> "forgottenPasswordAnswer3": "sample string 6",<br /> "forgottenPasswordQuestion4": "sample string 7",<br /> "forgottenPasswordAnswer4": "sample string 8"<br /> },<br /> "groupList": [<br /> {<br /> "groupId": "sample string 1",<br /> "groupName": "sample string 2",<br /> "permissionProfileId": "sample string 3",<br /> "groupType": "sample string 4",<br /> "users": [<br /> {<br /> "userName": "sample string 1",<br /> "userId": "sample string 2",<br /> "email": "sample string 3",<br /> "userType": "sample string 4",<br /> "userStatus": "sample string 5",<br /> "uri": "sample string 6",<br /> "loginStatus": "sample string 7",<br /> "sendActivationEmail": "sample string 8",<br /> "activationAccessCode": "sample string 9"<br /> }<br /> ]<br /> }<br /> ],<br /> "workAddress": {<br /> "address1": "sample string 1",<br /> "address2": "sample string 2",<br /> "city": "sample string 3",<br /> "stateOrProvince": "sample string 4",<br /> "postalCode": "sample string 5",<br /> "phone": "sample string 6",<br /> "fax": "sample string 7",<br /> "country": "sample string 8"<br /> },<br /> "homeAddress": {},<br /> "loginStatus": "sample string 22",<br /> "passwordExpiration": "sample string 23",<br /> "lastLogin": "sample string 24",<br /> "sendActivationEmail": "sample string 25",<br /> "customSettings": [<br /> {}<br /> ],<br /> "profileImageUri": "sample string 26",<br /> "userProfileLastModifiedDate": "sample string 27",<br /> "signatureImageUri": "sample string 28",<br /> "initialsImageUri": "sample string 29",<br /> "jobTitle": "sample string 30"<br />}</code> |
| User ID    | The ID of the user to access.                                                                           |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |

### Update Webhook

Update an existing webhook.

| Input      | Comments                                                                                                                  | Default                                                                                                                                                                                                                                                                                                                                                                            |
| ---------- | ------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| Connection |                                                                                                                           |                                                                                                                                                                                                                                                                                                                                                                                    |
| JSON Input | For extra fields, see https://developers.docusign.com/docs/esign-rest-api/reference/connect/connectconfigurations/update/ | <code>{<br /> "configurationType": "custom",<br /> "connectId": "123456",<br /> "allowEnvelopePublish": "true",<br /> "allUsers": "true",<br /> "enableLog": "true",<br /> "includeCertificateOfCompletion": "true",<br /> "includeHMAC": "false",<br /> "includeOAuth": "false",<br /> "includeTimeZoneInformation": "true",<br /> "allowSalesforcePublish": "true"<br />}</code> |
