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

# Retrieve Permission



## OpenAPI

````yaml GET /api/v1/permissions/{id}/
openapi: 3.0.3
info:
  title: Nekt API
  version: v1
  description: Nekt API Documentation
  contact:
    email: support@nekt.ai
servers:
  - url: https://api.nekt.ai
security: []
paths:
  /api/v1/permissions/{id}/:
    get:
      tags:
        - v1
      operationId: v1_permissions_retrieve
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          description: A UUID string identifying this Lakehouse permission.
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LakehousePermission'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    LakehousePermission:
      type: object
      properties:
        id:
          type: string
          format: uuid
          readOnly: true
        permission_level:
          $ref: '#/components/schemas/PermissionLevelEnum'
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        user:
          type: string
          readOnly: true
          description: User (Expandable)
        group:
          type: string
          readOnly: true
          description: Group (Expandable)
        layer:
          type: string
          readOnly: true
          description: Layer (Expandable)
        folder:
          type: string
          readOnly: true
          description: Folder (Expandable)
        table:
          type: string
          readOnly: true
          description: Table (Expandable)
        volume:
          type: string
          readOnly: true
          description: Volume (Expandable)
        granted_by:
          type: string
          readOnly: true
          description: Granted by (Expandable)
      required:
        - created_at
        - folder
        - granted_by
        - group
        - id
        - layer
        - permission_level
        - table
        - updated_at
        - user
        - volume
    PermissionLevelEnum:
      enum:
        - manager
        - editor
        - viewer
      type: string
      description: |-
        * `manager` - Manager
        * `editor` - Editor
        * `viewer` - Viewer
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````