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

# Review Group Insights Question Route

> Answer one question using only the aggregate Reviews cohort packet.



## OpenAPI

````yaml /openapi.json post /api/v1/brands/{brand_id}/brand-intelligence/review-group-insights/question
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/brands/{brand_id}/brand-intelligence/review-group-insights/question:
    post:
      tags:
        - Brand Reviews
        - Brand Reviews
      summary: Review Group Insights Question Route
      description: Answer one question using only the aggregate Reviews cohort packet.
      operationId: >-
        review_group_insights_question_route_api_v1_brands__brand_id__brand_intelligence_review_group_insights_question_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/BrandReviewGroupQARequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrandReviewGroupQAResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BrandReviewGroupQARequest:
      properties:
        advertiser_ids:
          items:
            type: string
            format: uuid
          type: array
          maxItems: 60
          minItems: 1
          title: Advertiser Ids
        group_label:
          anyOf:
            - type: string
              maxLength: 120
            - type: 'null'
          title: Group Label
        reference_advertiser_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Reference Advertiser Id
        aspect_platform:
          anyOf:
            - type: string
              enum:
                - trustpilot
                - google
            - type: 'null'
          title: Aspect Platform
        all_aspect_platforms:
          type: boolean
          title: All Aspect Platforms
          default: false
        question:
          type: string
          maxLength: 500
          minLength: 1
          title: Question
        prior_user_questions:
          items:
            type: string
            maxLength: 500
            minLength: 1
          type: array
          maxItems: 4
          title: Prior User Questions
      additionalProperties: false
      type: object
      required:
        - advertiser_ids
        - question
      title: BrandReviewGroupQARequest
      description: Question-answering over the measured reviews cohort packet only.
    BrandReviewGroupQAResponse:
      properties:
        status:
          type: string
          enum:
            - answered
            - insufficient_data
            - out_of_scope
          title: Status
        answer:
          type: string
          maxLength: 1200
          minLength: 1
          title: Answer
        citations:
          items:
            $ref: '#/components/schemas/ReviewGroupQACitation'
          type: array
          maxItems: 8
          title: Citations
      type: object
      required:
        - status
        - answer
      title: BrandReviewGroupQAResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ReviewGroupQACitation:
      properties:
        ref:
          type: string
          maxLength: 160
          minLength: 1
          title: Ref
        value:
          type: string
          maxLength: 400
          minLength: 1
          title: Value
      type: object
      required:
        - ref
        - value
      title: ReviewGroupQACitation
      description: One canonical citation resolved server-side from the packet refs.
    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

````