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

# Get organization properties (platform-keyed document)

> Returns org_props for the org as a keyed object (`data`), one key per row. Query parameters `page` and `limit` paginate **rows** in `prop` sort order (not the number of keys in a merged JSON document). Default limit is 50; maximum is 100.




## OpenAPI

````yaml /api-reference/ilyama.v1.json get /organizations/properties
openapi: 3.1.0
info:
  description: >
    Generation-ready starter contract for ilyama's HTTP API.

    This is intentionally scoped to stable routes already mounted in
    services/apis

    so frontend clients can begin integrating against the rewrite immediately.
  title: ilyama Core API
  version: 0.1.0
servers:
  - url: /core/api/v1
security:
  - bearerAuth: []
tags:
  - name: Certificates (HTTP)
  - name: Device JITR
  - name: Device RPC
  - name: Devices
  - name: Edge replication
  - name: Fleets
  - name: Integrations
  - name: MDM
  - name: Notification Event Registry
  - name: Notifications
  - name: OTA
  - name: Observability & data
  - name: Organizations
  - name: Project settings
  - name: Projects
  - name: Projects — Email Templates
  - name: Projects — Notification Subscriptions
  - name: Projects — Status
  - name: System
  - name: Tickets & workflows
  - name: Webhooks
paths:
  /organizations/properties:
    get:
      tags:
        - Organizations
      summary: Get organization properties (platform-keyed document)
      description: >
        Returns org_props for the org as a keyed object (`data`), one key per
        row. Query parameters `page` and `limit` paginate **rows** in `prop`
        sort order (not the number of keys in a merged JSON document). Default
        limit is 50; maximum is 100.
      operationId: listOrgProperties
      parameters:
        - description: 1-based page index (default 1)
          in: query
          name: page
          schema:
            minimum: 1
            type: integer
        - description: Page size (default 50, max 100)
          in: query
          name: limit
          schema:
            minimum: 1
            type: integer
        - description: Filter by org_prop_type
          in: query
          name: prop
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationsPropertiesResponse'
          description: Properties loaded
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Invalid request
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Unauthorized
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
          description: Forbidden
      security:
        - bearerAuth: []
          orgIdHeader: []
components:
  schemas:
    OrganizationsPropertiesResponse:
      properties:
        data:
          $ref: '#/components/schemas/OrganizationsPropertiesDocument'
        meta:
          $ref: '#/components/schemas/PaginationMeta'
        ok:
          enum:
            - 1
          type: integer
      required:
        - ok
        - data
        - meta
      type: object
    ErrorEnvelope:
      properties:
        detail:
          type: string
        message:
          oneOf:
            - type: string
            - type: object
        ok:
          enum:
            - 0
          type: integer
      required:
        - ok
        - message
        - detail
      type: object
    OrganizationsPropertiesDocument:
      additionalProperties: true
      description: >
        Org properties keyed by org_prop_type (e.g. type, email, website_link,
        email_config, sms_config, project_policy, custom). Shapes mirror the
        legacy platform org-props envelope; optional filters still scope which
        rows hydrate keys. When `page`/`limit` are used, only keys for property
        rows on that page are present (rows ordered by `prop`).
      type: object
    PaginationMeta:
      description: Pagination metadata for list endpoints (snake_case keys).
      properties:
        current_page:
          type: integer
        items_per_page:
          type: integer
        total_items:
          type: integer
        total_pages:
          type: integer
      required:
        - current_page
        - items_per_page
        - total_items
        - total_pages
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    orgIdHeader:
      in: header
      name: ORG-ID
      type: apiKey

````