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

# Invite Organization Member

> Create an invitation to an organization



## OpenAPI

````yaml /openapi.json post /auth/organization/invite-member
openapi: 3.1.0
info:
  title: Kaneo API
  version: 1.0.0
  description: Kaneo Project Management API - Manage projects, tasks, labels, and more
servers:
  - url: https://cloud.kaneo.app/api
    description: Kaneo API Server
security:
  - bearerAuth: []
paths:
  /auth/organization/invite-member:
    post:
      tags:
        - Organization Management
      summary: Invite Organization Member
      description: Create an invitation to an organization
      operationId: inviteOrganizationMember
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  description: The email address of the user to invite
                role:
                  anyOf:
                    - type: string
                    - type: array
                      items:
                        type: string
                  description: >-
                    The role(s) to assign to the user. It can be `admin`,
                    `member`, owner. Eg: "member"
                organizationId:
                  type: string
                  description: The organization ID to invite the user to
                resend:
                  type: boolean
                  description: >-
                    Resend the invitation email, if the user is already invited.
                    Eg: true
                teamId:
                  anyOf:
                    - type: string
                    - type: array
                      items:
                        type: string
              required:
                - email
                - role
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  email:
                    type: string
                  role:
                    type: string
                  organizationId:
                    type: string
                  inviterId:
                    type: string
                  status:
                    type: string
                  expiresAt:
                    type: string
                  createdAt:
                    type: string
                required:
                  - id
                  - email
                  - role
                  - organizationId
                  - inviterId
                  - status
                  - expiresAt
                  - createdAt
        '401':
          description: Missing or invalid credentials
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or session token (Bearer)

````