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

# Bulk Invite Users

> emails are string validated. If any email fails validation, no emails are
invited and an exception is raised.



## OpenAPI

````yaml PUT /manage/admin/users
openapi: 3.1.0
info:
  title: Onyx API
  description: Onyx API for AI-powered enterprise search and chat
  version: Development
servers:
  - url: https://cloud.onyx.app/api
security: []
paths:
  /manage/admin/users:
    put:
      tags:
        - public
      summary: Bulk Invite Users
      description: >-
        emails are string validated. If any email fails validation, no emails
        are

        invited and an exception is raised.
      operationId: bulk_invite_users
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Body_bulk_invite_users_manage_admin_users_put
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: integer
                title: Response Bulk Invite Users Manage Admin Users Put
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    Body_bulk_invite_users_manage_admin_users_put:
      properties:
        emails:
          items:
            type: string
          type: array
          title: Emails
      type: object
      required:
        - emails
      title: Body_bulk_invite_users_manage_admin_users_put
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Authorization header with Bearer token

````