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

# Invite team member



## OpenAPI

````yaml post /v1/customers/{id}/teams
openapi: 3.0.0
info:
  title: Corebanq - Customers API
  description: API endpoints for customer management
  version: 1.0.0
servers: []
security: []
paths:
  /v1/customers/{id}/teams:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    post:
      summary: Invite team member
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TeamInviteInput'
      responses:
        '200':
          description: Team member invited successfully
components:
  schemas:
    TeamInviteInput:
      type: object
      properties:
        email:
          type: string
          format: email
        role:
          type: string

````