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

# Invite Staff Member

> Invite a user to the authenticated company by email. If the user already exists they're added directly; otherwise an invitation email is sent (whitelabel-aware).



## OpenAPI

````yaml POST /settings/company/invite/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /settings/company/invite/:
    post:
      tags:
        - settings
      summary: Invite Staff Member
      description: >-
        Invite a user to the authenticated company by email. If the user already
        exists they're added directly; otherwise an invitation email is sent
        (whitelabel-aware).
      operationId: settings_company_invite_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyInviteCreateRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/CompanyInviteCreateRequestRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CompanyInviteCreateRequestRequest'
        required: true
      responses:
        '200':
          description: >-
            Invitation sent (or staff added directly if the user already
            exists).
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    CompanyInviteCreateRequestRequest:
      type: object
      properties:
        email:
          type: string
          format: email
          minLength: 1
        role:
          type: integer
          maximum: 4
          minimum: 1
          description: >-
            Permission level (1=read, 2=read+write agent config, 3=admin,
            4=owner).
      required:
        - email
        - role
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````