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

# Resolve Review



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/bound/reviews/{review_id}/resolve
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/bound/reviews/{review_id}/resolve:
    post:
      tags:
        - bound
      summary: Resolve Review
      operationId: resolve_review_api_v1_bound_reviews__review_id__resolve_post
      parameters:
        - name: review_id
          in: path
          required: true
          schema:
            type: string
            title: Review Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReviewResolve'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReviewOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReviewResolve:
      properties:
        verdict:
          type: string
          enum:
            - approved
            - overridden
            - escalated
          title: Verdict
        note:
          anyOf:
            - type: string
              maxLength: 2000
            - type: 'null'
          title: Note
        corrected_action:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Corrected Action
          description: Required when the verdict is overridden
        escalate_to_kind:
          anyOf:
            - type: string
              enum:
                - role
                - team
                - user
            - type: 'null'
          title: Escalate To Kind
        escalate_to:
          anyOf:
            - type: string
              maxLength: 200
            - type: 'null'
          title: Escalate To
      type: object
      required:
        - verdict
      title: ReviewResolve
    ReviewOut:
      properties:
        id:
          type: string
          title: Id
        agent_id:
          type: string
          title: Agent Id
        evaluation_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Evaluation Id
        escalated_from:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalated From
        client_ref:
          anyOf:
            - type: string
            - type: 'null'
          title: Client Ref
        org_unit:
          anyOf:
            - type: string
            - type: 'null'
          title: Org Unit
        escalate_to_kind:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalate To Kind
        escalate_to:
          anyOf:
            - type: string
            - type: 'null'
          title: Escalate To
        kind:
          type: string
          title: Kind
        status:
          type: string
          title: Status
        claimed_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Claimed By
        claimed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Claimed At
        resolved_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolved By
        resolved_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved At
        note:
          anyOf:
            - type: string
            - type: 'null'
          title: Note
        corrected_action:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Corrected Action
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - agent_id
        - evaluation_id
        - escalated_from
        - client_ref
        - org_unit
        - escalate_to_kind
        - escalate_to
        - kind
        - status
        - claimed_by
        - claimed_at
        - resolved_by
        - resolved_at
        - note
        - corrected_action
        - created_at
      title: ReviewOut
    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.

````