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

# Invite



## OpenAPI

````yaml /openapi_v4_core.json post /v4/core/members/invite
openapi: 3.0.0
info:
  title: Commenda Integrations V4 API
  description: Commenda Integrations — unified accounting, commerce, and CRM API.
  version: 4.0.0
  contact: {}
servers:
  - url: https://api.integrations.commenda.io
    description: Production
security:
  - api_key: []
tags: []
paths:
  /v4/core/members/invite:
    post:
      tags:
        - Member
      summary: Invite
      operationId: MemberController_addMemberToOrganization
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InviteMemberDTO'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InviteMemberResponse'
components:
  schemas:
    InviteMemberDTO:
      type: object
      properties:
        email:
          type: string
          format: email
          example: jane@example.com
        name:
          type: string
          maxLength: 200
          example: Jane Doe
      required:
        - email
        - name
    InviteMemberResponse:
      type: object
      properties:
        member:
          $ref: '#/components/schemas/InvitedMember'
      required:
        - member
    InvitedMember:
      type: object
      properties:
        id:
          type: number
      required:
        - id
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: api_key
      description: Your Commenda Integrations API key, sent in the `api_key` header.

````