---
title: "Creates new accounts."
method: POST
path: "/v2.1/accounts"
tags: ["Accounts"]
---

# Creates new accounts.

`POST /v2.1/accounts`

Creates new Docusign accounts.
You can use this method to create
a single account
or up to 100 accounts at a time.

**Note:**  This method is restricted to partner integrations.
You must work with Docusign Professional Services
or Docusign Business Development,
who will provide you with the Distributor Code
and Distributor Password
that you need to include in the request body.


When creating a single account,
the body of the request is a
[`newAccountRequest`][newAccountRequest]
object.

Example:

```
{
  "newAccountRequest": [
    {
      "accountName":"Test Account",
      "distributorCode":"MY_DIST_CODE",
      "distributorPassword":"MY_DIST_PWD",
      "initialUser":{
        "email":"user@emaildomain.com",
        "firstName":"John",
        "middleName": "Harry",
        "lastName":"Doe",
        "suffixName": "",
        "userName": "John Doe",
        "jobTitle": "Engineer",
        "company": "Test Company"
      },
      "addressInformation":{
        "address1": "1234 Main Street",
        "address2": "Suite 100",
        "city": "Seattle",
        "state": "WA",
        "postalCode": "98101",
        "country": "US",
        "phone": "1234567890",
        "fax": "1234567891"
      },
      "planInformation":{
        "planId":"37085696-xxxx-xxxx-xxxx-7ea067752959"
      },
      "referralInformation":{
        "includedSeats": "1",
        "referralCode": "code",
        "referrerName": "name"
      }
    }
  ]
}

```
If the request succeeds,
it returns a
201 (Created) HTTP response code.
The response returns the new account ID, password, and the default user
information for each newly created account.


When creating multiple accounts,
the body of the request is a
`newAccountRequests`
object,
which contains one or more
[`newAccountDefinition`][newAccountDefinition]
objects.
You can create up to 100 new accounts
at a time this way.

The body for a multi-account
creation request
looks like this in JSON:

```
{
  "newAccountRequests": [
    {
      "accountName": "accountone",
      . . .
    },
    {
      "accountName": "accounttwo",
      . . .
    }
  ]
}
```

A multi-account request
looks like this in XML:

```
<newAccountsDefinition xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.docusign.com/restapi">
  <newAccountRequests>
    <newAccountDefinition>
      . . .
    </newAccountDefinition>
    <newAccountDefinition>
      . . .
    </newAccountDefinition>
  </newAccountRequests>
</newAccountsDefinition>
```

A multi-account creation request
may succeed (report a 201 code)
even if some accounts could not be created.
In this case, the `errorDetails` property
in the response contains specific information
about the failure.



[newAccountDefinition]: #/definitions/newAccountDefinition
[nameValue]: #/definitions/nameValue
[newAccountRequest]: #/definitions/newAccountRequest

## Request body

- NewAccountDefinition
  - `accountName` string — The account name for the new account.
  - `accountSettings` AccountSettingsInformation — Contains account settings information. Used in requests to set property values. Used in responses to report property values.
    - `accessCodeFormat` AccessCodeFormat — Object specifying the format of the string provided to a recipient in order to access an envelope.
      - `formatRequired` string — Boolean specifying whether this format configuration is required.
      - `formatRequiredMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `letterRequired` string — Boolean specifying whether alphabetical characters are required in the access code string.
      - `letterRequiredMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `minimumLength` string — Minimum length of the access code string.
      - `minimumLengthMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `numberRequired` string — Boolean specifying whether numerical characters (0-9) are required in the access code string.
      - `numberRequiredMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `specialCharacterRequired` string — Boolean specifying whether special characters are required in the access code string. The string cannot contain the special characters '<', '>', '&', or '#'.
      - `specialCharacterRequiredMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
    - `accountDateTimeFormat` string — UTC date/time format for the account.
    - `accountDateTimeFormatMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `accountDefaultLanguage` string
    - `accountDefaultLanguageMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `accountName` string — The name on the account.
    - `accountNameMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `accountNotification` AccountNotification — A complex element that specifies notifications (expirations and reminders) for the envelope.
      - `expirations` Expirations — A complex element that specifies the expiration settings for the envelope. When an envelope expires, it is voided and no longer available for signing. **Note:** there is a short delay between when the envelope expires and when it is voided.
        - `expireAfter` string — An integer that sets the number of days the envelope is active. For this value to be used, `expireEnabled` must be explicitly set to **true.**
        - `expireEnabled` string — When **true,** the envelope expires in the number of days set by `expireAfter`. When **false** or not set, the envelope expires in the number of days specified by the [default expiration account setting](https://support.docusign.com/s/document-item?bundleId=pik1583277475390&topicId=rra1583277381176.html).
        - `expireWarn` string — An integer that specifying the number of days before the envelope expires that an expiration warning email is sent to the recipient. When 0 (zero), no warning email is sent.
      - `reminders` Reminders — A complex element that specifies reminder settings for the envelope.
        - `maximumReminderCount` string
        - `reminderDelay` string — An integer specifying the number of days after the recipient receives the envelope that reminder emails are sent to the recipient. The default value is 0.
        - `reminderEnabled` string — When **true,** reminders are enabled. The default value is **false.**
        - `reminderFrequency` string — An integer specifying the interval in days between reminder emails. The default value is 0.
        - `smartReminderEnabled` string
      - `userOverrideEnabled` string — When **true,** the user can override envelope expirations.
    - `accountUISettings` AccountUISettings — An object that defines the options that are available to non-administrators in the UI.
      - `adminMessage` AdminMessage
        - `baseMessage` string
        - `moreInformation` string
      - `allowUsersToEditSharedAccess` string
      - `allowUsersToEditSharedAccessMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `askAnAdmin` AskAnAdmin
        - `email` string
        - `message` string
        - `name` string
        - `phone` string
      - `clickwrapSchemaVersion` string
      - `clickwrapSchemaVersionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `disableWebAppAccess` string
      - `disableWebAppAccessMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableAdminMessage` string
      - `enableAdminMessageMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableEasySignCanUseMultiTemplateApply` string
      - `enableEasySignCanUseMultiTemplateApplyMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableEasySignTemplateUpload` string
      - `enableEasySignTemplateUploadMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableEnvelopeCopyWithData` string
      - `enableEnvelopeCopyWithDataMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableEnvelopeTypes` string
      - `enableEnvelopeTypesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `enableLegacySendflowLink` string
      - `enableLegacySendflowLinkMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `hasExternalLinkedAccounts` string
      - `hasExternalLinkedAccountsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `hideSendAnEnvelope` string
      - `hideSendAnEnvelopeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `hideUseATemplate` string — When **true,** the **Templates** menu is hidden from account users who are not Admins. The default value is **false.**
      - `hideUseATemplateInPrepare` string
      - `hideUseATemplateInPrepareMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `hideUseATemplateMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `orderBasedRecipientIdGeneration` string
      - `orderBasedRecipientIdGenerationMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `removeEnvelopeForwarding` string
      - `removeEnvelopeForwardingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `shouldRedactAccessCode` string
      - `shouldRedactAccessCodeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `uploadNewImageToSignOrInitial` string
      - `uploadNewImageToSignOrInitialMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
    - `additionalSettings` AdditionalSetting[]
      - `metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
        - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
        - `options` string[] — An array of option strings supported by this setting.
        - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
        - `uiHint` string — Reserved for Docusign.
        - `uiOrder` string — Reserved for Docusign.
        - `uiType` string — Reserved for Docusign.
      - `name` string
      - `value` string — Specifies the value of the tab.
    - `adoptSigConfig` string — When **true,** [Signature Adoption Configuration](https://support.docusign.com/s/document-item?bundleId=pik1583277475390&topicId=dsz1583277358168.html) is enabled. **Note:** Only Admin users can change this setting.
    - `adoptSigConfigMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `advancedCorrect` string — When **true,** the Advanced Correction feature is enabled for this account.
    - `advancedCorrectMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `advancedSearchEnableTabField` string
    - `advancedSearchEnableTabFieldMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `advancedSearchEnableTemplateIdField` string
    - `advancedSearchEnableTemplateIdFieldMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `advancedSearchEnableTemplateNameField` string
    - `advancedSearchEnableTemplateNameFieldMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `aiAssistedWebFormCreationLevel` string
    - `aiAssistedWebFormCreationLevelMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAccessCodeFormat` string — When **true,** the configured [Access Code Format](/docs/esign-rest-api/reference/accounts/accounts/get/#accessCodeFormat) page is enabled for account administrators. **Note:** Only Admin users can change this setting.
    - `allowAccessCodeFormatMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAccountManagementGranular` string — When **true,** the account can be managed on a per-user basis. **Note:** Only Admin users can change this setting.
    - `allowAccountManagementGranularMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAccountMemberNameChange` string — Boolean that specifies whether member names can be changed in the account.
    - `allowAccountMemberNameChangeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowACE` string
    - `allowACEMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAdvancedRecipientRoutingConditional` string — When **true,** [Conditional Routing](https://support.docusign.com/s/document-item?bundleId=gav1643676262430&topicId=aqm1578456487908.html) is enabled for the account as part of Docusign's Advanced Recipient Routing feature.
    - `allowAdvancedRecipientRoutingConditionalMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAgentNameEmailEdit` string — When **true,** an agent recipient can change the email addresses of recipients later in the signing order.
    - `allowAgentNameEmailEditMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAgreementActions` string
    - `allowAgreementActionsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAgreementOrchestrations` string
    - `allowAgreementOrchestrationsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAutoNavSettings` string — When **true,** auto-navigation can be enabled for this account.
    - `allowAutoNavSettingsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowAutoTagging` string — When **true,** auto-tagging is enabled for the account.
    - `allowAutoTaggingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowBulkSend` string — When **true,** bulk send functionality is enabled for the account. **Note:** Only Admin users can change this setting.
    - `allowBulkSendMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowBYOIDV` string
    - `allowBYOIDVMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowCDWithdraw` string — When **true,** indicates that the customer can withdraw their consent to the consumer disclosure when they decline to sign documents. If these recipients sign documents sent to them from your account in the future, they will be required to agree to the terms in the disclosure. The default value is **false.** **Note:** Only Admin users can change this setting.
    - `allowCDWithdrawMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowConnectAgreementUI` string
    - `allowConnectAgreementUIMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowConnectAuthoritativeCopyReadyEventUI` string
    - `allowConnectEnvelopeReminderSentEventUI` string
    - `allowConnectEnvelopeRemovedEvent` string
    - `allowConnectExtensionUI` string
    - `allowConnectHttpListenerConfigs` string — Boolean that specifies whether a Connect configuration can use HTTP listeners.
    - `AllowConnectIdentityVerificationUI` string
    - `allowConnectOAuthUI` string
    - `allowConnectSendFinishLater` string — Reserved for Docusign.
    - `allowConnectSendFinishLaterMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowConnectUnifiedPayloadUI` string
    - `allowConnectWorkspaceUploadRequestUI` string
    - `allowConsumerDisclosureOverride` string — When **true,** the account has the ability to change the [Consumer Disclosure](https://support.docusign.com/s/document-item?bundleId=pik1583277475390&topicId=aqg1583277336549.html) setting.
    - `allowConsumerDisclosureOverrideMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDataDownload` string — When **true,** senders can download form data from the envelopes that they send. **Note:** Only Admin users can change this setting.
    - `allowDataDownloadMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDelayedRouting` string — "true" if the account has permission to use the scheduled sending feature to send envelopes at a specified datetime in the future, "false" otherwise.
    - `allowDelayedRoutingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDelegatedSigning` string
    - `allowDelegatedSigningMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDocGenDocuments` string
    - `allowDocGenDocumentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDocumentDisclosures` string — Boolean that specifies whether disclosure documents can be included in envelopes.
    - `allowDocumentDisclosuresMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDocumentsOnSignedEnvelopes` string — Boolean that specifies whether notifications can include the envelope's signed document.
    - `allowDocumentsOnSignedEnvelopesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowDocumentVisibility` string — When **true,** the [Document Visibility](https://support.docusign.com/guides/ndse-user-guide-document-visibility) feature is enabled for the account.
    - `allowDocumentVisibilityMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEditingEnvelopesOnBehalfOfOthers` string
    - `allowEditingEnvelopesOnBehalfOfOthersMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEHankoStamps` string — When **true,** [eHanko stamps](https://support.docusign.com/s/document-item?bundleId=jux1643235969954&topicId=dys1578456666697.html) are enabled.
    - `allowEHankoStampsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowENoteEOriginal` string — Specifies whether eNote eOriginal integration is enabled.
    - `allowENoteEOriginalMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEnvelopeCorrect` string — When **true,** the envelope correction feature is enabled. **Note:** Only Admin users can change this setting.
    - `allowEnvelopeCorrectMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEnvelopeCustodyTransfer` string — Specifies whether the account is able to manage rules that [transfer ownership](https://support.docusign.com/s/document-item?bundleId=pik1583277475390&topicId=xqx1583277378404.html) of envelopes within the same account.
    - `allowEnvelopeCustodyTransferMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEnvelopeCustomFields` string — Specifies whether [envelope custom fields](https://support.docusign.com/s/document-item?bundleId=jux1643235969954&topicId=mns1578456285568.html) are enabled.
    - `allowEnvelopeCustomFieldsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEnvelopePublishReporting` string — When **true,** envelope publishing reporting is enabled. **Note:** Only Admin users can change this setting.
    - `allowEnvelopePublishReportingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowEnvelopeReporting` string — Specifies whether the account has access to reports.
    - `allowEnvelopeReportingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowExpression` string — If the account plan does not include calculated fields, this setting allows an account to use them.
    - `allowExpressionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowExpressSignerCertificate` string — When **true,** signers are required to use Express Digital Signatures. **Note:** Only Admin users can change this setting.
    - `allowExpressSignerCertificateMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowExtendedSendingResourceFile` string — Boolean that specifies whether resource files can be used for extended sending.
    - `allowExtendedSendingResourceFileMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowExternalLinkedAccounts` string
    - `allowExternalLinkedAccountsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowExternalSignaturePad` string — When **true,** the account can configure and use signature pads for their recipients. **Note:** Only Admin users can change this setting.
    - `allowExternalSignaturePadMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowFedRampIDVLevel1` string
    - `allowFedRampIDVLevel1Metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowFedRampIDVLevel2` string
    - `allowFedRampIDVLevel2Metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVForEUQualifiedSignatures` string
    - `allowIDVForEUQualifiedSignaturesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVLevel1` string — When **true,** IDV Level 1 is allowed. The default value is **false.**
    - `allowIDVLevel1Metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVLevel1Trial` string
    - `allowIDVLevel1TrialMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVLevel2` string
    - `allowIDVLevel2Metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVLevel3` string
    - `allowIDVLevel3Metadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIDVPlatform` string
    - `allowIDVPlatformMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowIdvRiskAssessment` string
    - `allowIdvRiskAssessmentMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowInPerson` string — When **true,** the account administrator can enable in-person signing. **Note:** Only SysAdmin users can change this setting.
    - `allowInPersonElectronicNotary` string — Account-level flag that determines the ability to perform In-Person Electronic Notary (IPEN) actions.
    - `allowInPersonElectronicNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowInPersonMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowManagedStamps` string — When **true,** [Managed Stamps](https://support.docusign.com/s/document-item?bundleId=pik1583277475390&topicId=cex1583277417267.html) are enabled.
    - `allowManagedStampsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowManagingEnvelopesOnBehalfOfOthers` string
    - `allowManagingEnvelopesOnBehalfOfOthersMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowMarkup` string — When **true,** the Document Markup feature is enabled. **Note:** To use this feature, Document Markup must be enabled at both the account and envelope levels. Only Admin users can change this setting at the account level.
    - `allowMarkupMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowMemberTimeZone` string — When **true,** account users can set their own [time zone settings](https://support.docusign.com/s/articles/How-do-I-modify-time-zone-settings-for-my-account). **Note:** Only Admin users can change this setting.
    - `allowMemberTimeZoneMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowMergeFields` string — When **true,** the account can use [merge fields](https://support.docusign.com/s/document-item?bundleId=evk1581360654067&topicId=ipy1581360621906.html) with Docusign for Salesforce.
    - `allowMergeFieldsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowMultipleBrandProfiles` string — Specifies whether the account supports multiple brands.
    - `allowMultipleBrandProfilesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowMultipleSignerAttachments` string — When **true,** recipients can upload multiple signer attachments with a single attachment. **Note:** Only Admin users can change this setting.
    - `allowMultipleSignerAttachmentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowNonUSPhoneAuth` string — Specifies whether users can use international numbers for phone authentication.
    - `allowNonUSPhoneAuthMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOcrOfEnvelopeDocuments` string
    - `allowOcrOfEnvelopeDocumentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOfflineSigning` string — When **true,** [offline signing](https://support.docusign.com/articles/Offline-access-with-the-DocuSign-Mobile-App-for-iOS-iPad-iPhone-iPod-Touch) is enabled for the account. **Note:** Only Admin users can change this setting.
    - `allowOfflineSigningMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOnlyStandaloneWebForms` string
    - `allowOnlyStandaloneWebFormsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOpenTrustSignerCertificate` string — When **true,** senders can use OpenTrust signer certificates. **Note:** Only Admin users can change this setting.
    - `allowOpenTrustSignerCertificateMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationBranding` string
    - `allowOrganizationBrandingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationDocusignMonitor` string
    - `allowOrganizationDocusignMonitorFree` string
    - `allowOrganizationDocusignMonitorFreeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationDocusignMonitorMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationDomainUserManagement` string
    - `allowOrganizationDomainUserManagementMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizations` string — Boolean that specifies whether [Docusign Admin](/docs/admin-api/) is enabled for the account.
    - `allowOrganizationsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationSsoManagement` string
    - `allowOrganizationSsoManagementMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationToUseInPersonElectronicNotary` string — Organization-level flag that determines the ability to perform In-Person Electronic Notary (IPEN) actions.
    - `allowOrganizationToUseInPersonElectronicNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationToUseRemoteNotary` string
    - `allowOrganizationToUseRemoteNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowOrganizationToUseThirdPartyElectronicNotary` string — Org level flag that determines the availability to perform Third Party Notary (3PN) actions.
    - `allowOrganizationToUseThirdPartyElectronicNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowParticipantRecipientType` string
    - `allowParticipantRecipientTypeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPaymentProcessing` string — When **true,** payment processing is enabled for the account. **Note:** Only Admin users can change this setting.
    - `allowPaymentProcessingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPendingDestinationUrlEdition` string
    - `allowPendingDestinationUrlEditionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPerformanceAnalytics` string
    - `allowPerformanceAnalyticsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPhoneAuthentication` string — Boolean that specifies whether phone authentication is enabled for the account.
    - `allowPhoneAuthenticationMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPhoneAuthOverride` string — Boolean that specifies whether users can override phone authentication.
    - `allowPhoneAuthOverrideMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowPrivateSigningGroups` string — Reserved for Docusign. This property returns the value **false** when listing account settings. This property is read-only.
    - `allowPrivateSigningGroupsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowRecipientConnect` string
    - `allowRecipientConnectMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowReminders` string — When **true,** an account administrator can to turn on reminders and expiration defaults for the account. **Note:** Only Admin users can change this setting.
    - `allowRemindersMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowRemoteNotary` string
    - `allowRemoteNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowResourceFileBranding` string — When **true,** resource files can be uploaded in branding.
    - `allowResourceFileBrandingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSafeBioPharmaSignerCertificate` string — When **true,** account administrators can specify that signers are required to use SAFE-BioPharma digital signatures. **Note:** Only Admin users can change this setting.
    - `allowSafeBioPharmaSignerCertificateMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowScheduledSending` string — "true" if the account has permission to use the scheduled sending feature to send envelopes at a specified datetime in the future, "false" otherwise.
    - `allowScheduledSendingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSecurityAppliance` string — Boolean that specifies whether a Docusign Signature Appliance can be used with the account.
    - `allowSecurityApplianceMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSendingEnvelopesOnBehalfOfOthers` string
    - `allowSendingEnvelopesOnBehalfOfOthersMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSendToCertifiedDelivery` string — When **true,** the account admin can enable the Send to Certified Delivery feature on the account.
    - `allowSendToCertifiedDeliveryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSendToIntermediary` string — When **true,** the account admin can enable the Send to Intermediary feature on the account.
    - `allowSendToIntermediaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowServerTemplates` string — When **true,** the account can use templates.
    - `allowServerTemplatesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSetEmbeddedRecipientStartURL` string
    - `allowSetEmbeddedRecipientStartURLMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSharedTabs` string — When **true,** shared tabs are enabled for the account. **Note:** Only Admin users can change this setting.
    - `allowSharedTabsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSignatureStamps` string — When **true,** Signature Stamps are enabled. **Note:** Only Admin users can change this setting.
    - `allowSignatureStampsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSignDocumentFromHomePage` string — When **true,** recipients can sign documents from the home page. **Note:** Only Admin users can change this setting.
    - `allowSignDocumentFromHomePageMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSignerReassign` string — When **true,** the recipient of an envelope sent from this account can reassign it to another person. **Note:** Only Admin users can change this setting.
    - `allowSignerReassignMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSignerReassignOverride` string — When **true,** an account administrator can override the ability of an envelope recipient to reassign it to another person. **Note:** Only Admin users can change this setting.
    - `allowSignerReassignOverrideMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSigningExtensions` string — Boolean that specifies whether Signing and App Extensions are allowed.
    - `allowSigningExtensionsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSigningGroups` string — When **true,** the account allows signing groups. This setting is only shown in responses that list account settings. This property is read-only.
    - `allowSigningGroupsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSigningInsights` string
    - `allowSigningInsightsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSigningRadioDeselect` string — Boolean that specifies whether the account supports radio buttons on tabs [Radio CustomTabType](/docs/esign-soap-api/reference/sending-group/tab/).
    - `allowSigningRadioDeselectMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSignNow` string — When **true,** the account administrator can enable the Sign Now feature.
    - `allowSignNowMetadata` string — Metadata that indicates whether the `allowSignNow` property is editable.
    - `allowSMSDelivery` string
    - `allowSMSDeliveryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSocialIdLogin` string — Deprecated.
    - `allowSocialIdLoginMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowSupplementalDocuments` string — When **true,** this user can include supplemental documents.
    - `allowSupplementalDocumentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowThirdPartyElectronicNotary` string — Account level flag that determines the availability to perform Third Party Notary (3PN) actions.
    - `allowThirdPartyElectronicNotaryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowTransactionsWorkspace` string
    - `allowTransactionsWorkspaceMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowTransactionsWorkspaceOriginal` string
    - `allowTransactionsWorkspaceOriginalMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowUsersToAccessDirectory` string
    - `allowUsersToAccessDirectoryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowValueInsights` string
    - `allowValueInsightsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowWebForms` string
    - `allowWebFormsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `allowWhatsAppDelivery` string
    - `allowWhatsAppDeliveryMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `anchorPopulationScope` string — This property determines how template anchor tabs are applied. Valid values are: - `document`: Anchor tabs are applied only to the document that you specify. - `envelope`: Anchor tabs are applied to all of the documents in the envelope associated with the template. **Note:** When you are using the `anchorPopulationScope` property with a Composite Template, the value `document` is supported only with a single server template and a single inline template.
    - `anchorPopulationScopeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `anchorTagVersionedPlacementEnabled` string — Reserved for Docusign.
    - `anchorTagVersionedPlacementMetadataEnabled` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `attachCompletedEnvelope` string — When **true,** envelope documents are included as a PDF file attachment to "signing completed" emails. **Note:** Only SysAdmin users can change this setting.
    - `attachCompletedEnvelopeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `authenticationCheck` string — Sets when authentication checks are applied for recipient envelope access. This setting only applies to the following ID checks: - Phone Authentication - SMS Authentication - Knowledge-Based ID This setting takes one of the following options: - `initial_access`: The authentication check always applies the first time a recipient accesses the documents. Recipients are not asked to authenticate again when they access the documents from the same browser on the same device. If the recipient attempts to access the documents from a different browser or a different device, the recipient must pass authentication again. Once authenticated, that recipient is not challenged again on the new device or browser. The ability for a recipient to skip authentication for documents is limited to documents sent from the same sending account. - `each_access`: Authentication checks apply every time a recipient attempts to access the envelope. However, you can configure the Authentication Expiration setting to allow recipients to skip authentication when they have recently passed authentication by setting a variable time frame. **Note:** Only Admin users can change this setting.
    - `authenticationCheckMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `autoNavRule` string — Specifies how auto-navigation works. Valid values are: - `off` - `required_fields` - `required_and_blank_fields` - `all_fields` - `page_then_required_fields` - `page_then_required_and_blank_fields` - `page_then_all_fields`
    - `autoNavRuleMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `autoProvisionSignerAccount` string — Boolean that specifies whether to automatically provision a user membership in the account for accountless recipients. (Also known as Just-in-Time provisioning.)
    - `autoProvisionSignerAccountMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `bccEmailArchive` string — Boolean that specifies whether BCC for Email Archive is enabled for the account. BCC for Email Archive allows you to set up an archive email address so that a BCC copy of an envelope is sent only to that address.
    - `bccEmailArchiveMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `betaSwitchConfiguration` string — Reserved for Docusign.
    - `betaSwitchConfigurationMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `billingAddress` AddressInformation — Contains address information.
      - `address1` string — The first line of the user's address. Maximum length: 100 characters.
      - `address2` string — The second line of the user's address. Maximum length: 100 characters.
      - `city` string — The user's city. Maximum length: 40 characters.
      - `country` string — The user's country. Maximum length: 50 characters.
      - `fax` string — A fax number associated with the address, if one is available.
      - `phone` string — A phone number associated with the address.
      - `postalCode` string — The user's postal code. Maximum length: 20 characters.
      - `stateOrProvince` string — The user's state or province. Maximum length: 40 characters.
      - `zipPlus4` string
    - `billingAddressMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `bulkSend` string — When **true,** this user can use the bulk send feature for the account.
    - `bulkSendActionResendLimit` string
    - `bulkSendMaxCopiesInBatch` string
    - `bulkSendMaxUnprocessedEnvelopesCount` string
    - `bulkSendMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `canSelfBrandSend` string — When **true,** account administrators can self-brand their sending console through the Docusign console.
    - `canSelfBrandSendMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `canSelfBrandSign` string — When **true,** account administrators can self-brand their signing console through the Docusign console.
    - `canSelfBrandSignMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `canUseSalesforceOAuth` string
    - `canUseSalesforceOAuthMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `captureVoiceRecording` string — Reserved for Docusign.
    - `captureVoiceRecordingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `cfr21SimplifiedSigningEnabled` string
    - `cfr21SimplifiedSigningEnabledMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `cfrUseWideImage` string — Boolean that specifies whether to use a shorter/wider format when generating the CFR Part 11 signature image.
    - `cfrUseWideImageMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `checkForMultipleAdminsOnAccount` string
    - `checkForMultipleAdminsOnAccountMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `chromeSignatureEnabled` string — Boolean that specifies whether the signers of the envelopes from this account use a signature with a Docusign chrome around it or not.
    - `chromeSignatureEnabledMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `cloudReady` string
    - `commentEmailShowMessageText` string — When **true,** the text of comments is included in email notifications when a comment is posted. **Note:** If the envelope requires additional recipient authentication, comment text is not included.
    - `commentEmailShowMessageTextMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `commentsAllowEnvelopeOverride` string — When **true** and comments are enabled for the account, senders can disable comments for an envelope through the **Advanced Options** menu that appears during the sending process.
    - `commentsAllowEnvelopeOverrideMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `conditionalFieldsEnabled` string — When **true,** conditional fields can be used in documents. **Note:** Only Admin users can change this setting.
    - `conditionalFieldsEnabledMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `consumerDisclosureFrequency` string — Speficies how often to display the consumer disclosure. Valid values are: - `once`: Per account, the supplemental document is displayed once only per `userId`. - `always`: Per envelope, the supplemental document is displayed once only per `userId`. - `each_access`: Per envelope, the supplemental document is displayed once only per `recipientId`.
    - `consumerDisclosureFrequencyMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `convertPdfFields` string — Boolean that specifies whether to enable PDF form fields to get converted to Docusign secure fields when the document is added or uploaded to an envelope.
    - `convertPdfFieldsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `customExtractionPlanLevels` string
    - `customExtractionPlanLevelsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `dataPopulationScope` string — Specifies how data is shared for tabs with the same tabLabel. Valid values are: - `document`: Tabs in a document with the same label populate with the same data. - `envelope`: Tabs in all documents in the envelope with the same label populate with the same data. - `notset`: Use the global account setting. This setting applies to the following tab types: - Check box - Company - Data field - Drop-down list - Full name - Formula - Note - Title **Note:** Only Admin users can change this setting. Changing this setting affects envelopes that have been sent but not completed.
    - `dataPopulationScopeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `defaultSigningResponsiveView` string
    - `defaultSigningResponsiveViewMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `defaultSigningResponsiveViewUseGrade` string
    - `defaultSigningResponsiveViewUseGradeMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `defaultToAdvancedEnvelopesFilterForm` string
    - `defaultToAdvancedEnvelopesFilterFormMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableAutoTemplateMatching` string
    - `disableAutoTemplateMatchingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableLegacyKba` string
    - `disableLegacyKbaMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableLegacySharedEnvelopes` string
    - `disableLegacySharedEnvelopesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableMobileApp` string — When **true,** the mobile app distributor key is prevented from connecting for account users.
    - `disableMobileAppMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableMobilePushNotifications` string — When **true,** push notifications are disabled for the account. **Note:** Only Admin users can change this setting.
    - `disableMobilePushNotificationsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableMobileSending` string — When **true,** sending from a mobile application is disabled. **Note:** Only Admin users can change this setting.
    - `disableMobileSendingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableMultipleSessions` string — When **true,** account users cannot be logged into multiple sessions at the same time. **Note:** Only Admin users can change this setting.
    - `disableMultipleSessionsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disablePurgeNotificationsForSenderMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableSignerCertView` string — When **true,** signers cannot view certificates of completion.
    - `disableSignerCertViewMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableSignerHistoryView` string — When **true,** signers cannot view envelope history.
    - `disableSignerHistoryViewMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableStyleSignature` string — When **true,** the **Select Style** option is hidden from signers and they must draw their signature instead.
    - `disableStyleSignatureMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableUploadSignature` string — When **true,** signers cannot upload custom image files of their signature and initials. **Note:** Only Admin users can change this setting.
    - `disableUploadSignatureMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `disableUserSharing` string — When **true,** the User Sharing feature is disabled for the account.
    - `disableUserSharingMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `displayBetaSwitch` string — Boolean that specifies whether to display a Beta switch for your app.
    - `displayBetaSwitchMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `documentConversionRestrictions` string — Sets the account document upload restriction for non-account administrators. Valid values are: - `no_restrictions`: There are no restrictions on the type of documents that can be uploaded. - `allow_pdf_only`: Non-administrators can only upload PDF files. - `no_upload`: Non-administrators cannot upload files. **Note:** Only Admin users can change this setting.
    - `documentConversionRestrictionsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `documentRetention` string — Sets a document retention period, which controls the number of days that Docusign retains documents after they have reached a completed,declined, or voided state. When document retention is enabled for the account, the default value is `356` days.
    - `documentRetentionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `documentRetentionPurgeTabs` string — When **true** and `documentRetention` is set, document fields and metadata are also purged after the document retention period ends. The default value is **false.** **Note:** Only Admins can change this setting.
    - `documentVisibility` string — Configures the Document Visibility feature for the account. Valid values are: - `Off`: Document Visibility is not active for the account. - `MustSignToViewUnlessSenderAccount`: Document Visibility is enabled for all envelopes sent from the account. Any member of the sending account can view all of the documents in an envelope. - `MustSignToViewUnlessSender`: Document Visibility is enabled for all envelopes sent from the account. Only the sender can view all of the documents in an envelope. - `SenderCanSetMustSignToViewUnlessSenderAccount`: The sender has the option to enable Document Visibility for an envelope. When enabled for an envelope, all of the documents within it are still visible to any member of the sending account. Vd- `SenderCanSetMustSignToViewUnlessSender`: The sender has the option to enable Document Visibility for an envelope. When enabled for an envelope, all of the documents in the envelope are visible only to the sender. **Note:** For this configuration to take effect, `allowDocumentVisibility` must be set to **true.**
    - `documentVisibilityMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `draftEnvelopeRetention` string
    - `draftEnvelopeRetentionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `dss_SIGN_28411_EnableLeavePagePrompt_RadminOption` string
    - `dss_SIGN_29182_SlideUpBar_RadminOption` string
    - `emailTemplateVersion` string — Specifies the version of the email templates used in an account. If new signing is selected in a member's Admin page, the user is updated to the newest version (1.1), the minimum version of email supported for the account.
    - `emailTemplateVersionMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAccessCodeGenerator` string — When **true,** enables Access Code Generator on the account.
    - `enableAccessCodeGeneratorMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAccountWideSearch` string
    - `enableAccountWideSearchMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdditionalAdvancedWebFormsFeatures` string
    - `enableAdditionalAdvancedWebFormsFeaturesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdmHealthcare` string — Account Level Flag that determines the availability to use ADM Healthcare fields
    - `enableAdmHealthcareMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdvancedEnvelopesSearch` string
    - `enableAdvancedEnvelopesSearchMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdvancedPayments` string — When **true,** enables Advanced Payments for the account.
    - `enableAdvancedPaymentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdvancedPowerForms` string — When **true,** enables advanced PowerForms for the account.
    - `enableAdvancedPowerFormsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAdvancedSearch` string
    - `enableAdvancedSearchMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAgreementActionsForCLM` string
    - `enableAgreementActionsForCLMMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAgreementActionsForESign` string
    - `enableAgreementActionsForESignMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAgreementDeskAdvanced` string
    - `enableAgreementDeskAdvancedMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAIAgents` string
    - `enableAIAgentsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAIContractReview` string
    - `enableAIContractReviewMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAISenderMessage` string
    - `enableAISenderMessageMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAISuggestedFields` string
    - `enableAISuggestedFieldsAutoPlace` string
    - `enableAISuggestedFieldsAutoPlaceMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAISuggestedFieldsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableAutoNav` string — When **true,** enables the account to set the AutoNav rule setting, which enables a sender to override the auto-navigation setting per envelope. **Note:** To change this setting, you must be a SysAdmin user or `EnableAutoNavByDSAdmin must be set.
    - `enableAutoNavMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableBatchUpdateEnvelopeTypes` string
    - `enableBatchUpdateEnvelopeTypesMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableBccDummyLink` string
    - `enableBccDummyLinkMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableCacPivSignatureGroup` string
    - `enableCacPivSignatureGroupMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableCalculatedFields` string — When **true,** calculated fields are enabled for the account. **Note:** This setting can be changed only by Admin users, and only if the account-level setting `allowExpression` is set to **true.**
    - `enableCalculatedFieldsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableCFRRapidSigningEmbeddedAuth` string
    - `enableCFRRapidSigningEmbeddedAuthMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickPlus` string
    - `enableClickPlusConditionalContent` string
    - `enableClickPlusConditionalContentMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickPlusCustomFields` string
    - `enableClickPlusCustomFieldsMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickPlusCustomStyle` string
    - `enableClickPlusCustomStyleMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickPlusDynamicContent` string
    - `enableClickPlusDynamicContentMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickPlusMetaData` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableClickwraps` string — Boolean that specifies whether clickwraps are enabled in your app. A [clickwrap](/docs/click-api/click101/) is an iframe that you embed in your own website or app.
    - `enableClickwrapsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableCombinedPDFDownloadForSBS` string
    - `enableCommentsHistoryDownloadInSigning` string
    - `enableCommentsHistoryDownloadInSigningMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableContactSuggestions` string
    - `enableContactSuggestionsMetadata` SettingsMetadata — Metadata that indicates whether a property is editable and describes setting-specific options.
      - `is21CFRPart11` string — When **true,** indicates compliance with United States Food and Drug Administration (FDA) regulations on electronic records and electronic signatures (ERES).
      - `options` string[] — An array of option strings supported by this setting.
      - `rights` string — Indicates whether the property is editable. Valid values are: - `editable` - `read_only`
      - `uiHint` string — Reserved for Docusign.
      - `uiOrder` string — Reserved for Docusign.
      - `uiType` string — Reserved for Docusign.
    - `enableContentSearch` string
- … truncated; see the full OpenAPI document linked below

## Response `201`

Successful response.

## Other responses

- `400` — Error encountered.

---

[API](https://skmtc.net/docusign/apis/docusign-esignature-rest-api.md) · [All operations](https://skmtc.net/docusign/apis/docusign-esignature-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/docusign/docusign-esignature-rest-api/versions/77f1998c313d/schema)
