> ## 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 Semantic Layer Permission Recipients

> The users and groups that can still be added to a Semantic Layer resource.

Same contract as the other two axes: **active Members only**, ids by default, full objects with `expand`, and picker semantics — a recipient who already holds a grant on the resource you name is omitted, so the list never offers a duplicate.

```bash theme={null}
curl --request GET \
  --url "https://api.nekt.ai/api/v1/semantic-layer/permission-recipients/?expand=users" \
  --header "x-api-key: YOUR_API_KEY"
```

```json theme={null}
{
  "groups": ["b8c5e1e3-6d02-4f45-ad20-8f4b6e2d0e13"],
  "users": ["3f7c1e88-9a41-4b2d-8e5f-6c0a2d4b9e11"]
}
```

<Note>
  Owners and Admins are absent by design: they bypass the Semantic Layer permission axis entirely, so a grant to them would change nothing.
</Note>


## OpenAPI

````yaml GET /api/v1/semantic-layer/permission-recipients/
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/semantic-layer/permission-recipients/:
    get:
      tags:
        - v1
      summary: List Semantic Layer permission recipients
      description: >-
        Users and groups that can still be **added** to a Semantic Layer
        resource. A recipient who already holds a grant there is omitted, so the
        list never offers a duplicate. Only active members are returned — Owners
        and Admins bypass the axis entirely.
      operationId: v1_semantic_layer_permission_recipients_retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SemanticLayerPermissionRecipients'
          description: ''
      security:
        - ApiKeyAuth: []
components:
  schemas:
    SemanticLayerPermissionRecipients:
      type: object
      properties:
        groups:
          type: array
          items:
            type: string
            format: uuid
        users:
          type: array
          items:
            type: string
            format: uuid
      required:
        - groups
        - users
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: 'API Key authentication. Format: ''x-api-key: api_key'''

````