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

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

# EsignatureSignerStatusResponse

## 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:
    EsignatureSignerStatus:
      type: object
      properties:
        recipientId:
          type: string
          description: DocuSign recipient sequence (RecipientID from proc).
          nullable: true
        signerName:
          type: string
          description: Display name in the signer grid.
          nullable: true
        signerStatus:
          type: string
          description: Delivered | Needs to Sign | Needs to View | Waiting for Other
            Signer(s) | Completed (Signed).
          nullable: true
        signerEmail:
          type: string
          description: Signer email; may be read-only for AYCO.
          nullable: true
        dateOfAction:
          type: string
          description: When this recipient last acted or status changed, as returned by
            upstream (format varies; often empty until an action occurs).
          nullable: true
        signerAuthMethod:
          type: string
          description: Phone, SMS, or None.
          nullable: true
        signerCountryCode:
          type: string
          description: Country calling code (default 1 for US; up to ~3 characters).
          nullable: true
        signerPhoneNo:
          type: string
          description: Digits only (no dashes); typically 10 digits for US display.
          nullable: true
      additionalProperties: false
      example:
        recipientId: "11306862"
        signerName: EE EE1
        signerStatus: Needs to Sign
        signerEmail: anannya.gupta@everglades.com
        dateOfAction: 2026-01-12T14:22:00
        signerAuthMethod: Phone
        signerCountryCode: "1"
        signerPhoneNo: "8650827071"
    EsignatureSignerStatusResponse:
      type: object
      properties:
        success:
          type: boolean
          description: True when signer status rows were retrieved successfully.
        signers:
          type: array
          items:
            $ref: "#/components/schemas/EsignatureSignerStatus"
          description: Per-recipient DocuSign status and contact details for the
            transaction.
          nullable: true
      additionalProperties: false
      example:
        success: true
        signers:
          - recipientId: "11306862"
            signerName: EE EE1
            signerStatus: Needs to Sign
            signerEmail: anannya.gupta@everglades.com
            dateOfAction: 2026-01-12T14:22:00
            signerAuthMethod: Phone
            signerCountryCode: "1"
            signerPhoneNo: "8650827071"
          - recipientId: "11306935"
            signerName: RR RR
            signerStatus: Waiting for Other Signer(s)
            signerEmail: ""
            dateOfAction: ""
            signerAuthMethod: SMS
            signerCountryCode: "1"
            signerPhoneNo: "8650827071"
```
