> ## 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.

# Remove team member



## OpenAPI

````yaml delete /v1/customers/{id}/teams/{user_id}
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/{user_id}:
    parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
    delete:
      summary: Remove team member
      responses:
        '200':
          description: Team member removed successfully

````