> ## Documentation Index
> Fetch the complete documentation index at: https://docsautomator.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Resend signing invitation

> Resends the signing invitation email to a specific signer. Useful when the original email was missed or expired.



## OpenAPI

````yaml /openapi.json post /esign/sessions/{sessionId}/resend/{signerIndex}
openapi: 3.1.0
info:
  title: DocsAutomator API
  version: '2.0'
  description: >-
    REST API for programmatic document generation, automation management, and
    e-signature workflows.
  contact:
    name: DocsAutomator Support
    email: support@docsautomator.co
    url: https://docsautomator.co
servers:
  - url: https://api.docsautomator.co
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Documents
    description: Create documents and manage async jobs
  - name: Automations
    description: CRUD operations for automations
  - name: Templates
    description: Template placeholders and duplication
  - name: E-Signatures
    description: Manage signing sessions, links, and audit trails
  - name: Email
    description: Test email delivery
paths:
  /esign/sessions/{sessionId}/resend/{signerIndex}:
    post:
      tags:
        - E-Signatures
      summary: Resend signing invitation
      description: >-
        Resends the signing invitation email to a specific signer. Useful when
        the original email was missed or expired.
      operationId: resendSigningInvite
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
          description: The signing session ID.
        - name: signerIndex
          in: path
          required: true
          schema:
            type: integer
            minimum: 1
          description: The signer index (1-based).
      responses:
        '200':
          description: Invitation resent
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: true
                  message:
                    type: string
                    example: Invitation resent to john@example.com
        '400':
          description: Signer already signed or invalid session status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message.
  responses:
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key from your workspace settings. Pass as `Authorization: Bearer
        <key>` or `X-API-Key: <key>`. Find it at
        [app.docsautomator.co/settings/workspace/api](https://app.docsautomator.co/settings/workspace/api).

````