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

# Send Employer Invite Email

> Sends an email for an employer identifier invite



## OpenAPI

````yaml POST /v1/employer-identifiers/{employer_identifier}/invites/{invite}/send-email
openapi: 3.1.0
info:
  title: Payroll Integrations Public API
  description: Public API for Payroll Integrations platform
  version: '2025-10-28T20:05:03Z'
  license:
    name: MIT
servers:
  - url: https://api.payrollintegrationsapp.com
    description: Prod environment
  - url: https://demo1-api.payrollintegrationsdemo.com
    description: Demo environment
  - url: https://demo2-api.payrollintegrationsdemo.com
    description: Demo environment
  - url: https://demo3-api.payrollintegrationsdemo.com
    description: Demo environment
security:
  - bearerAuth: []
paths:
  /v1/employer-identifiers/{employer_identifier}/invites/{invite}/send-email:
    post:
      tags:
        - Employer Identifier Invites
      summary: Send employer identifier invite email
      description: Sends an email for an employer identifier invite
      operationId: sendEmployerInviteEmail
      parameters:
        - name: employer_identifier
          in: path
          required: true
          schema:
            type: string
        - name: invite
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '202':
          description: Accepted - Email queued for sending
        '400':
          description: >-
            Bad Request - Onboarding already completed for this employer
            identifier invite
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized - authentication credentials are missing or invalid
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Not Found - Employer identifier invite does not exist
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: >-
            Too Many Requests - Email notification sent recently, rate limit
            exceeded
          headers:
            Retry-After:
              schema:
                type: integer
                example: 300
              description: Number of seconds to wait before retrying
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string
          description: Error message describing what went wrong
        errors:
          type: array
          description: Optional array of detailed error messages
          items:
            type: string

````