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

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

# UpdateEsignSignerDetailsRequest

## 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:
    UpdateEsignSignerRequest:
      type: object
      properties:
        recipientId:
          type: string
          description: DocuSign recipient ID from GET signers or signer status.
          nullable: true
        signerEmail:
          type: string
          description: Corrected signer email address.
          nullable: true
        signerSequence:
          type: string
          description: Signing order when routing is sequential.
          nullable: true
        signerAuthMethod:
          type: string
          description: Auth method for the signer (for example Phone or SMS).
          nullable: true
        signerCountryCode:
          type: string
          description: Country calling code (default 1 for US).
          nullable: true
        signerPhoneNo:
          type: string
          description: Corrected phone digits only; stored without dashes.
          nullable: true
      additionalProperties: false
    UpdateEsignSignerDetailsRequest:
      required:
        - signers
      type: object
      properties:
        transactionId:
          minimum: 1
          type: integer
          description: Transaction (case) identifier whose signer contact details should
            be updated.
          format: int64
        signers:
          minItems: 1
          type: array
          items:
            $ref: "#/components/schemas/UpdateEsignSignerRequest"
          description: Signer rows with corrected email and/or phone while e-sign is
            pending.
      additionalProperties: false
      example:
        transactionId: 1131068
        signers:
          - recipientId: "11306862"
            signerEmail: corrected.email@everglades.com
            signerSequence: "1"
            signerAuthMethod: Phone
            signerCountryCode: "1"
            signerPhoneNo: "8650827071"
```
