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

# Create Brand Review Privacy Request Route

> Record a privacy/deletion request for the owned brand's review surface.



## OpenAPI

````yaml /openapi.json post /api/v1/brands/{brand_id}/brand-intelligence/review-privacy-requests
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/review-privacy-requests:
    post:
      tags:
        - Brand Reviews
        - Brand Reviews
      summary: Create Brand Review Privacy Request Route
      description: Record a privacy/deletion request for the owned brand's review surface.
      operationId: >-
        create_brand_review_privacy_request_route_api_v1_brands__brand_id__brand_intelligence_review_privacy_requests_post
      parameters:
        - name: brand_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brand Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BrandReviewPrivacyRequestIn'
      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:
    BrandReviewPrivacyRequestIn:
      properties:
        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
        source_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Source Id
        review_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Review Id
        platform:
          anyOf:
            - type: string
              enum:
                - trustpilot
                - google
            - type: 'null'
          title: Platform
        requester_name:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Requester Name
        requester_email:
          anyOf:
            - type: string
              maxLength: 320
            - type: 'null'
          title: Requester Email
        review_url:
          anyOf:
            - type: string
              maxLength: 2048
            - type: 'null'
          title: Review Url
        reviewer_name:
          anyOf:
            - type: string
              maxLength: 255
            - type: 'null'
          title: Reviewer Name
        notes:
          anyOf:
            - type: string
              maxLength: 4000
            - type: 'null'
          title: Notes
      type: object
      required:
        - request_type
        - legal_regime
        - applicable_right
      title: BrandReviewPrivacyRequestIn
    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

````