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

# Get Strategy Brief History Detail

> Full brief text + frozen strategy snapshot for a single historical row.

Powers the read-only split-pane detail view. The returned
``strategy_snapshot`` is verbatim from the moment of generation — even
if the team's live ``content_strategy`` has since been regenerated.



## OpenAPI

````yaml /openapi.json get /api/v1/teams/{team_id}/strategy/briefs/{brief_id}
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/teams/{team_id}/strategy/briefs/{brief_id}:
    get:
      tags:
        - Teams
      summary: Get Strategy Brief History Detail
      description: |-
        Full brief text + frozen strategy snapshot for a single historical row.

        Powers the read-only split-pane detail view. The returned
        ``strategy_snapshot`` is verbatim from the moment of generation — even
        if the team's live ``content_strategy`` has since been regenerated.
      operationId: >-
        get_strategy_brief_history_detail_api_v1_teams__team_id__strategy_briefs__brief_id__get
      parameters:
        - name: team_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Team Id
        - name: brief_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Brief Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StrategyBriefHistoryDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    StrategyBriefHistoryDetail:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        created_at:
          type: string
          format: date-time
          title: Created At
        cycle_instance_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Cycle Instance Id
        brief_text:
          type: string
          title: Brief Text
        strategy_file_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Strategy File Id
        strategy_snapshot:
          additionalProperties: true
          type: object
          title: Strategy Snapshot
      type: object
      required:
        - id
        - created_at
        - brief_text
      title: StrategyBriefHistoryDetail
      description: Full payload for a single historical brief + its generated strategy.
    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

````