Docusign · Schema

UserInfo

Information about a DocuSign user.

AgreementsContractsDigital Transaction ManagementDocumentsElectronic SignatureseSignature

Properties

Name Type Description
userName string The user's full name.
email string The user's email address.
userId string The user's unique ID.
accountId string The account ID associated with the user.
View JSON Schema on GitHub

JSON Schema

docusign-esignature-user-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UserInfo",
  "type": "object",
  "description": "Information about a DocuSign user.",
  "properties": {
    "userName": {
      "type": "string",
      "description": "The user's full name."
    },
    "email": {
      "type": "string",
      "description": "The user's email address."
    },
    "userId": {
      "type": "string",
      "description": "The user's unique ID."
    },
    "accountId": {
      "type": "string",
      "description": "The account ID associated with the user."
    }
  }
}