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

# Invite team member



## OpenAPI

````yaml openapi/devex.yaml post /developers/account/team
openapi: 3.0.3
info:
  title: TXCloud DevEx API
  version: 1.0.0
  description: >
    Developer Experience API for managing API access, monitoring usage, and
    debugging.
servers:
  - url: https://api.txcloud.io/v1
  - url: https://sandbox.api.txcloud.io/v1
security:
  - BearerAuth: []
tags:
  - name: Keys
    description: API key management
  - name: Webhooks
    description: Webhook configuration
  - name: Usage
    description: Usage and billing
  - name: Logs
    description: Request logs
  - name: Sandbox
    description: Testing tools
  - name: Account
    description: Account management
paths:
  /developers/account/team:
    post:
      tags:
        - Account
      summary: Invite team member
      operationId: inviteTeamMember
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                role:
                  type: string
      responses:
        '201':
          description: Invitation sent
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````