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

# Set Brand Reviews Tracking

> Control Reviews collection independently of GTB, preserving its history.

GTBs and brands with an active UOB/DOB in any market cannot be disabled.
The advertiser lock serializes this decision with global promotion and
dormant-account archival. Enabling a ZOB does not promote it to GTB,
clear its dormancy marker, or enqueue an immediate paid fetch.



## OpenAPI

````yaml /openapi.json patch /api/v1/admin/brand-library/brands/{advertiser_id}/reviews-tracking
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/brand-library/brands/{advertiser_id}/reviews-tracking:
    patch:
      tags:
        - Admin Brand Library
        - Admin
      summary: Set Brand Reviews Tracking
      description: |-
        Control Reviews collection independently of GTB, preserving its history.

        GTBs and brands with an active UOB/DOB in any market cannot be disabled.
        The advertiser lock serializes this decision with global promotion and
        dormant-account archival. Enabling a ZOB does not promote it to GTB,
        clear its dormancy marker, or enqueue an immediate paid fetch.
      operationId: >-
        set_brand_reviews_tracking_api_v1_admin_brand_library_brands__advertiser_id__reviews_tracking_patch
      parameters:
        - name: advertiser_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Advertiser Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandLibraryReviewsTrackingUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandLibraryReviewsTrackingResult'
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandLibraryConflictResponse'
          description: Conflict
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandLibraryReviewsTrackingUpdate:
      properties:
        reviews_fetch_enabled:
          type: boolean
          title: Reviews Fetch Enabled
      type: object
      required:
        - reviews_fetch_enabled
      title: BrandLibraryReviewsTrackingUpdate
      description: Set Reviews collection without altering GTB or any stored reviews.
    BrandLibraryReviewsTrackingResult:
      properties:
        advertiser_id:
          type: string
          format: uuid
          title: Advertiser Id
        reviews_fetch_enabled:
          type: boolean
          title: Reviews Fetch Enabled
        changed:
          type: boolean
          title: Changed
      type: object
      required:
        - advertiser_id
        - reviews_fetch_enabled
        - changed
      title: BrandLibraryReviewsTrackingResult
      description: The committed Reviews collection state for the whole library brand.
    BrandLibraryConflictResponse:
      properties:
        detail:
          type: string
          title: Detail
      type: object
      required:
        - detail
      title: BrandLibraryConflictResponse
      description: A server-side refusal to change a Brand Library advertiser.
    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

````