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

# Remove a whitelisted domain from the team



## OpenAPI

````yaml /partner-swagger.yml delete /reseller/teams/{teamId}/domains/{domainId}
openapi: 3.0.0
info:
  title: Clerk Reseller / Partner API
  description: API For usage by Clerk Resellers and Partners
  version: '1.0'
  contact: {}
servers:
  - url: https://partners.clerk.chat
    description: Production server
security: []
tags: []
paths:
  /reseller/teams/{teamId}/domains/{domainId}:
    delete:
      tags:
        - reseller
      summary: Remove a whitelisted domain from the team
      operationId: ResellerController_deleteTeamDomain
      parameters:
        - name: teamId
          required: true
          in: path
          schema:
            type: string
        - name: domainId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````