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

# Creating invites

> Invites users to join specific workspaces within your organization.



## OpenAPI

````yaml POST /organizations/{organizationId}/invites
openapi: 3.0.1
info:
  title: OpenAPI
  description: Tally's API
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.tally.so
security:
  - bearerAuth: []
paths:
  /organizations/{organizationId}/invites:
    post:
      tags:
        - Organization
      summary: Create organization invites
      description: Invites users to join specific workspaces within your organization.
      parameters:
        - name: organizationId
          in: path
          required: true
          description: The ID of the organization
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                workspaceIds:
                  type: array
                  items:
                    type: string
                  description: Array of workspace IDs to invite users to
                emails:
                  type: string
                  description: >-
                    Comma or semicolon separated list of email addresses to
                    invite
              required:
                - workspaceIds
                - emails
      responses:
        '204':
          description: >-
            Invites created successfully. Existing users were added to
            workspaces and new users received invitation emails.
        '400':
          description: >-
            Invalid request body - Invalid email format or missing required
            fields
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: >-
            Forbidden - User doesn't have required permissions or Pro
            subscription
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````