> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rotavision.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Decision



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/decisions/{record_id}
openapi: 3.1.0
info:
  title: Sakshi — Agent Governance API
  description: >-
    Registry (KYA), decision flight recorder, bounded autonomy, evidence packs,
    fairness screens. Auth: bearer ingest keys create evidence; OIDC JWTs with
    governance roles mutate state.
  version: 0.1.0
servers:
  - url: https://demo.rotavision.com
    description: Public demo (read-only, synthetic data)
  - url: https://{host}
    description: Your Sakshi deployment (single-tenant, in your environment)
    variables:
      host:
        default: sakshi.your-company.internal
security:
  - bearerAuth: []
paths:
  /api/v1/decisions/{record_id}:
    get:
      tags:
        - witness
      summary: Get Decision
      operationId: get_decision_api_v1_decisions__record_id__get
      parameters:
        - name: record_id
          in: path
          required: true
          schema:
            type: string
            title: Record Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DecisionOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DecisionOut:
      properties:
        id:
          type: string
          title: Id
        tenant_id:
          type: string
          title: Tenant Id
        agent_id:
          type: string
          title: Agent Id
        seq:
          type: integer
          title: Seq
        client_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Ref
        captured_at:
          type: string
          format: date-time
          title: Captured At
        model_identity:
          additionalProperties: true
          type: object
          title: Model Identity
        context:
          additionalProperties: true
          type: object
          title: Context
        decision_chain:
          items: {}
          type: array
          title: Decision Chain
        action:
          additionalProperties: true
          type: object
          title: Action
        policy_state:
          additionalProperties: true
          type: object
          title: Policy State
        human_touchpoints:
          items: {}
          type: array
          title: Human Touchpoints
        pii_manifest:
          additionalProperties: true
          type: object
          title: Pii Manifest
        prev_hash:
          type: string
          title: Prev Hash
        record_hash:
          type: string
          title: Record Hash
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - tenant_id
        - agent_id
        - seq
        - client_ref
        - captured_at
        - model_identity
        - context
        - decision_chain
        - action
        - policy_state
        - human_touchpoints
        - pii_manifest
        - prev_hash
        - record_hash
        - created_at
      title: DecisionOut
    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:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````