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

# Invite people to an organisation

> Invite one or more people (body: `{ "emails": [...] }`) to an organisation. Each invitation is created
with the `user` role and an invitation email is sent. Returns the subset of submitted email addresses
that were SKIPPED because they are already members; an empty array means every address was invited.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json post /invitations/organisations/{organisationId}
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /invitations/organisations/{organisationId}:
    post:
      tags:
        - Invitation
      summary: Invite people to an organisation
      description: >-
        Invite one or more people (body: `{ "emails": [...] }`) to an
        organisation. Each invitation is created

        with the `user` role and an invitation email is sent. Returns the subset
        of submitted email addresses

        that were SKIPPED because they are already members; an empty array means
        every address was invited.
      operationId: CreateOrganisationInvitation
      parameters:
        - in: path
          name: organisationId
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                emails:
                  items:
                    type: string
                  type: array
              required:
                - emails
              type: object
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                items: {}
                type: array
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````