---
title: "EsignatureSigner"
url: "https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec/schemas/EsignatureSigner"
---

> Full API specification: https://developers.zinnia.com/apis/market-connect-order-entry/versions/50f981c3-db50-4358-884f-31eb427255ec.md

# EsignatureSigner

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Market Connect Order Entry API
  version: 1.0.3
servers:
  - url: https://dev.api.zinnia.io
  - url: https://qa.api.zinnia.io
  - url: https://uat.api.zinnia.io
components:
  schemas:
    EsignatureSigner:
      type: object
      properties:
        recipientId:
          type: string
          description: DocuSign recipient ID from the recipient proc.
          nullable: true
        signerName:
          type: string
          description: Display name shown in the signer grid.
          nullable: true
        signerEntityRole:
          type: string
          description: Entity role (for example PrimaryOwner, AgentOfRecord).
          nullable: true
        signerEmail:
          type: string
          description: Signer email; may be empty for some roles.
          nullable: true
        signerSequence:
          type: string
          description: Signing order when routing is sequential.
          nullable: true
        signerAccessCode:
          type: array
          items:
            type: string
          description: Access codes when configured; empty array when none.
          nullable: true
        signerAuthMethod:
          type: array
          items:
            type: string
          description: Array of auth method labels (for example Phone, SMS).
          nullable: true
        signerCountryCode:
          type: string
          description: Country calling code (default 1 for US).
          nullable: true
        signerPhoneNo:
          type: string
          description: Phone digits only; stored without dashes in proc.
          nullable: true
      additionalProperties: false
      example:
        recipientId: "11306862"
        signerName: EE EE
        signerEntityRole: PrimaryOwner
        signerEmail: anannya.gupta@everglades.com
        signerSequence: "1"
        signerAccessCode: []
        signerAuthMethod:
          - Phone
          - SMS
        signerCountryCode: "1"
        signerPhoneNo: "8650827071"
```
