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

# List Permissions



## OpenAPI

````yaml GET /api/v1/permissions/
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/:
    get:
      tags:
        - v1
      operationId: v1_permissions_list
      parameters:
        - in: query
          name: folder
          schema:
            type: string
            format: uuid
        - in: query
          name: group
          schema:
            type: string
            format: uuid
        - in: query
          name: indirect_folder
          schema:
            type: string
        - in: query
          name: indirect_table
          schema:
            type: string
        - in: query
          name: indirect_user
          schema:
            type: number
        - in: query
          name: indirect_volume
          schema:
            type: string
        - in: query
          name: layer
          schema:
            type: string
            format: uuid
        - name: page
          required: false
          in: query
          description: A page number within the paginated result set.
          schema:
            type: integer
        - name: page_size
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - in: query
          name: resource_type
          schema:
            type: string
            enum:
              - folder
              - layer
              - table
              - volume
          description: |-
            * `layer` - Layer
            * `folder` - Folder
            * `table` - Table
            * `volume` - Volume
        - name: search
          required: false
          in: query
          description: A search term.
          schema:
            type: string
        - in: query
          name: table
          schema:
            type: string
            format: uuid
        - in: query
          name: user
          schema:
            type: integer
        - in: query
          name: volume
          schema:
            type: string
            format: uuid
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedLakehousePermissionList'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    PaginatedLakehousePermissionList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=4
        previous:
          type: string
          nullable: true
          format: uri
          example: http://api.example.org/accounts/?page=2
        results:
          type: array
          items:
            $ref: '#/components/schemas/LakehousePermission'
    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'''

````