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

# Untrack Brand

> Clear GTB — remove an advertiser from the global refresh registry.

The admin-only kill switch for the paid nightly refresh sweep: stops
future collection without deleting the advertiser or its ad history (see
``AdLibraryTrackedAdvertiser``'s docstring — this is now its one
non-destructive removal path). Refuses UOB/DOB advertisers with 409
regardless of the census UI's disabled-button state — a direct API call
must not be able to untrack a brand some tenant actively owns or
discovered. Idempotent: untracking an advertiser that isn't currently
tracked still returns 204.



## OpenAPI

````yaml /openapi.json delete /api/v1/admin/brand-library/brands/{advertiser_id}/global-tracking
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/brand-library/brands/{advertiser_id}/global-tracking:
    delete:
      tags:
        - Admin Brand Library
        - Admin
      summary: Untrack Brand
      description: |-
        Clear GTB — remove an advertiser from the global refresh registry.

        The admin-only kill switch for the paid nightly refresh sweep: stops
        future collection without deleting the advertiser or its ad history (see
        ``AdLibraryTrackedAdvertiser``'s docstring — this is now its one
        non-destructive removal path). Refuses UOB/DOB advertisers with 409
        regardless of the census UI's disabled-button state — a direct API call
        must not be able to untrack a brand some tenant actively owns or
        discovered. Idempotent: untracking an advertiser that isn't currently
        tracked still returns 204.
      operationId: >-
        untrack_brand_api_v1_admin_brand_library_brands__advertiser_id__global_tracking_delete
      parameters:
        - name: advertiser_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Advertiser Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````