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

# Decide Brand Review Privacy Request Route

> Record verification, extension and counsel/operator disposition.



## OpenAPI

````yaml /openapi.json patch /api/v1/brands/{brand_id}/brand-intelligence/review-privacy-requests/{request_id}
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/review-privacy-requests/{request_id}:
    patch:
      tags:
        - Brand Reviews
        - Brand Reviews
      summary: Decide Brand Review Privacy Request Route
      description: Record verification, extension and counsel/operator disposition.
      operationId: >-
        decide_brand_review_privacy_request_route_api_v1_brands__brand_id__brand_intelligence_review_privacy_requests__request_id__patch
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
        - name: request_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Request Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandReviewPrivacyRequestDecisionIn'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandReviewPrivacyRequestResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandReviewPrivacyRequestDecisionIn:
      properties:
        verification_status:
          anyOf:
            - type: string
              enum:
                - pending
                - verified
                - rejected
            - type: 'null'
          title: Verification Status
        trigger_extension:
          type: boolean
          title: Trigger Extension
          default: false
        extension_notice_sent:
          type: boolean
          title: Extension Notice Sent
          default: false
        extension_reason:
          anyOf:
            - type: string
              maxLength: 4000
              minLength: 1
            - type: 'null'
          title: Extension Reason
        final_disposition:
          anyOf:
            - type: string
              enum:
                - approved_erasure
                - denied
                - limited
                - no_action
            - type: 'null'
          title: Final Disposition
        decision_reason:
          anyOf:
            - type: string
              maxLength: 4000
              minLength: 1
            - type: 'null'
          title: Decision Reason
        claimed_exception:
          anyOf:
            - type: string
              maxLength: 4000
            - type: 'null'
          title: Claimed Exception
        legal_hold:
          anyOf:
            - type: string
              maxLength: 4000
            - type: 'null'
          title: Legal Hold
        processing_restriction:
          anyOf:
            - type: string
              maxLength: 4000
            - type: 'null'
          title: Processing Restriction
      type: object
      title: BrandReviewPrivacyRequestDecisionIn
    BrandReviewPrivacyRequestResponse:
      properties:
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
          title: Status
        request_id:
          type: string
          format: uuid
          title: Request Id
        request_type:
          type: string
          enum:
            - privacy
            - copyright
            - staleness
          title: Request Type
        legal_regime:
          type: string
          enum:
            - gdpr
            - ccpa
            - other
          title: Legal Regime
        applicable_right:
          type: string
          enum:
            - access
            - know
            - erasure
            - delete
            - correct
            - object
            - restrict
            - copyright
            - staleness
          title: Applicable Right
        requires_erasure:
          type: boolean
          title: Requires Erasure
        verification_status:
          type: string
          enum:
            - pending
            - verified
            - rejected
          title: Verification Status
        received_at:
          type: string
          format: date-time
          title: Received At
        base_deadline_at:
          type: string
          format: date-time
          title: Base Deadline At
        extension_deadline_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Extension Deadline At
        final_disposition:
          anyOf:
            - type: string
              enum:
                - approved_erasure
                - denied
                - limited
                - no_action
            - type: 'null'
          title: Final Disposition
        decided_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Decided At
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - status
        - request_id
        - request_type
        - legal_regime
        - applicable_right
        - requires_erasure
        - verification_status
        - received_at
        - base_deadline_at
        - created_at
      title: BrandReviewPrivacyRequestResponse
    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

````