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

# Elevate this admin's view-content access for one session ...



## OpenAPI

````yaml /openapi.json post /admin/content-elevate
openapi: 3.0.0
info:
  title: Kair Voice
  version: '1.0'
servers:
  - url: http://0.0.0.0:8000/api
security: []
tags:
  - name: Admin
  - name: ApiKey
  - name: Auth
  - name: Concerns
  - name: Device
  - name: Graph
  - name: Health
  - name: Job
  - name: Session
  - name: Workshop
  - name: Workspace
paths:
  /admin/content-elevate:
    post:
      tags:
        - Admin
      summary: Elevate this admin's view-content access for one session ...
      operationId: post-admin-content-elevate
      requestBody:
        content:
          application/json; charset=utf-8:
            schema:
              $ref: '#/components/schemas/AdminContentElevateRequest'
        required: true
      responses:
        '200':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/AdminContentElevateResponse'
        '400':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: ''
          content:
            application/json; charset=utf-8:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AdminContentElevateRequest:
      type: object
      title: AdminContentElevateRequest
      description: |-
        Body for `POST /admin/content-elevate`. Operator supplies a one-line
        `reason` justifying their need to view content of a session they're
        not a native member of. Lands in `admin_content_view_log`.
      required:
        - session_id
        - reason
      properties:
        session_id:
          type: string
          format: uuid
        transcription_id:
          type: string
          format: uuid
        reason:
          type: string
    AdminContentElevateResponse:
      type: object
      title: AdminContentElevateResponse
      required:
        - session_id
        - grant_ttl_seconds
      properties:
        session_id:
          type: string
        grant_ttl_seconds:
          type: integer
          format: uint64
          description: |-
            Seconds remaining on the in-memory grant, after which the admin
            must re-elevate. Frontend can show a countdown if useful.
    ErrorResponse:
      type: object
      title: ErrorResponse
      required:
        - success
        - message
      properties:
        success:
          type: boolean
        message:
          type: string

````