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

# Remove a seller custom domain



## OpenAPI

````yaml https://api.zeroclick.io/openapi.json delete /v1/sellers/{sellerId}/domains/{domainId}
openapi: 3.0.0
info:
  title: ZeroClick API
  description: >-
    REST API for managing ZeroClick sellers, services, pricing, usage, and
    analytics. Authenticate with an API key from the ZeroClick dashboard.
  version: 1.0.0
servers:
  - url: https://api.zeroclick.io
security:
  - bearerAuth: []
tags:
  - name: API keys
  - name: Sellers
  - name: Services
  - name: Meters
  - name: Plans
  - name: Plan meter prices
  - name: Usage
  - name: Analytics
  - name: Stripe Connect
  - name: Sandbox
  - name: Organizations
  - name: Users
paths:
  /v1/sellers/{sellerId}/domains/{domainId}:
    delete:
      tags:
        - Sellers
      summary: Remove a seller custom domain
      parameters:
        - schema:
            type: string
            minLength: 1
          in: path
          name: sellerId
          required: true
        - schema:
            type: string
            minLength: 1
          in: path
          name: domainId
          required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  deleted:
                    type: boolean
                    enum:
                      - true
                required:
                  - deleted
                additionalProperties: false
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - seller_not_found
                      - seller_domain_not_found
                      - duplicate_domain
                      - domain_limit_reached
                      - invalid_domain
                      - custom_domains_not_configured
                required:
                  - error
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - seller_not_found
                      - seller_domain_not_found
                      - duplicate_domain
                      - domain_limit_reached
                      - invalid_domain
                      - custom_domains_not_configured
                required:
                  - error
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - seller_not_found
                      - seller_domain_not_found
                      - duplicate_domain
                      - domain_limit_reached
                      - invalid_domain
                      - custom_domains_not_configured
                required:
                  - error
                additionalProperties: false
        '409':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - seller_not_found
                      - seller_domain_not_found
                      - duplicate_domain
                      - domain_limit_reached
                      - invalid_domain
                      - custom_domains_not_configured
                required:
                  - error
                additionalProperties: false
        '503':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    enum:
                      - organization_required
                      - seller_not_found
                      - seller_domain_not_found
                      - duplicate_domain
                      - domain_limit_reached
                      - invalid_domain
                      - custom_domains_not_configured
                required:
                  - error
                additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key created in the ZeroClick dashboard under Settings → API keys.
        Keys start with `zc_`. Send them as `Authorization: Bearer zc_...`.

````