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

# Resend the activation link for an inactive user account



## OpenAPI

````yaml api-reference/openapi.json post /api/auth/resend-activation-link
openapi: 3.0.0
info:
  title: Tandem IT API
  version: 1.0.0
  description: API for tandem it backend
servers:
  - url: https://tandem.hlofiys.xyz
    description: Production server
security: []
tags:
  - name: Documentation
    description: API documentation endpoint
paths:
  /api/auth/resend-activation-link:
    post:
      tags:
        - Authentication
      summary: Resend the activation link for an inactive user account
      operationId: resendActivationLink
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - email
              properties:
                email:
                  type: string
                  format: email
                  description: >-
                    The email address of the user who needs a new activation
                    link.
      responses:
        '200':
          description: >-
            If an inactive account with this email exists, a new activation link
            has been sent
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
        '400':
          description: >-
            Bad Request. The request is malformed, or the user account is
            already active
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: >-
            Not Found. A user with the specified email was not found (Note: for
            security, a generic 200 OK is returned).
        '500':
          description: Internal Server Error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - message
      properties:
        message:
          type: string

````