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

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

# EsignatureResponse

## 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"
    EsignatureResponse:
      type: object
      properties:
        success:
          type: boolean
          description: True when signers were retrieved successfully.
        message:
          type: string
          description: User-safe message; populated when success is false.
          nullable: true
        signers:
          type: array
          items:
            $ref: "#/components/schemas/EsignatureSigner"
          description: DocuSign recipients for the transaction, ordered by signing sequence.
          nullable: true
      additionalProperties: false
      example:
        success: true
        message: Signer details retrieved successfully.
        signers:
          - recipientId: "11306862"
            signerName: EE EE
            signerEntityRole: PrimaryOwner
            signerEmail: anannya.gupta@everglades.com
            signerSequence: "1"
            signerAccessCode: []
            signerAuthMethod:
              - Phone
              - SMS
            signerCountryCode: "1"
            signerPhoneNo: "8650827071"
          - recipientId: "11306935"
            signerName: RR RR
            signerEntityRole: AgentOfRecord
            signerEmail: ""
            signerSequence: "2"
            signerAccessCode: []
            signerAuthMethod:
              - Phone
              - SMS
            signerCountryCode: "1"
            signerPhoneNo: "8650827071"
```
