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

# Resend multiple invitations



## OpenAPI

````yaml post /v1/user/bulk-resend-invite
openapi: 3.0.0
info:
  title: Auth APIs Specification
  description: Section for description
  version: '1.0'
  contact: {}
servers:
  - url: https://staging.api.us.aptlydone.com/auth
  - url: https://staging.api.eu.aptlydone.com/auth
  - url: https://api.us.aptlydone.com/auth
  - url: https://api.eu.aptlydone.com/auth
security: []
tags: []
paths:
  /v1/user/bulk-resend-invite:
    post:
      tags:
        - users
      summary: Resend multiple invitations
      operationId: UserController_bulkResendInvites_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkResendInviteRequestDto'
      responses:
        '201':
          description: Invitations resent successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkResendInviteResponseDtoResponse'
      security:
        - accessToken: []
components:
  schemas:
    BulkResendInviteRequestDto:
      type: object
      properties:
        tenantId:
          type: string
          format: uuid
          description: Tenant ID
          example: 65704505-3bb2-4691-880f-5f31b26f4207
        userIds:
          minItems: 1
          description: Array of user IDs to resend invitations to
          example:
            - c8009e3b-49f2-4efb-9171-92991fba6ad4
            - 80ee2737-c11b-42d0-ac1a-401121d87581
          type: array
          items:
            type: string
            format: uuid
      required:
        - tenantId
        - userIds
    BulkResendInviteResponseDtoResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP Status code
          example: 200
        timestamp:
          type: string
          description: Timestamp of the response
          example: '2026-01-12T09:10:12.337Z'
        message:
          type: string
          description: Response message
          example: Success
        data:
          description: Response data
          allOf:
            - $ref: '#/components/schemas/BulkResendInviteResponseDto'
      required:
        - statusCode
        - timestamp
        - message
        - data
    BulkResendInviteResponseDto:
      type: object
      properties:
        total:
          type: number
          description: Total number of users processed
          example: 5
        successful:
          type: number
          description: Number of successful invites
          example: 4
        failed:
          type: number
          description: Number of failed invites
          example: 1
        results:
          description: Detailed results for each user
          type: array
          items:
            $ref: '#/components/schemas/BulkResendInviteResultDto'
      required:
        - total
        - successful
        - failed
        - results
    BulkResendInviteResultDto:
      type: object
      properties:
        email:
          type: string
          description: User email address
          example: user@example.com
        success:
          type: boolean
          description: Whether the invite was successfully resent
          example: true
        message:
          type: string
          description: Status message
          example: Invitation resent successfully
      required:
        - email
        - success
        - message
  securitySchemes:
    accessToken:
      scheme: bearer
      bearerFormat: JWT
      type: http

````