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

# My Entitlements

> The caller's EFFECTIVE Sakshi entitlements after the access mapping is
applied (ADR-021) — the console reads this at sign-in so nav matches what
the API authorizes. Any authenticated user; reflects the resolved principal,
not the raw IdP claims.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/me/entitlements
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/me/entitlements:
    get:
      tags:
        - me
      summary: My Entitlements
      description: >-
        The caller's EFFECTIVE Sakshi entitlements after the access mapping is

        applied (ADR-021) — the console reads this at sign-in so nav matches
        what

        the API authorizes. Any authenticated user; reflects the resolved
        principal,

        not the raw IdP claims.
      operationId: my_entitlements_api_v1_me_entitlements_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response My Entitlements Api V1 Me Entitlements Get
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Ingest API key or OIDC JWT. See /authentication.

````