---
title: "Get All Tenant Configurations"
method: GET
path: "/tenant-configurations"
tags: ["Tenant Configuration"]
---

# Get All Tenant Configurations

`GET /tenant-configurations`

Returns all tenant configurations for the specified tenant. This endpoint fetches all configuration types associated with the tenant.

## Headers

- `tenant-id` string, required

## Response `200`

Tenant configurations retrieved successfully

- TenantConfigurationListResponseDto — List of all tenant configurations for a tenant
  - `data` TenantConfigurationItemDto[] — List of tenant configurations
    - `id` string — Unique identifier for the configuration
    - `tenantId` string — Tenant ID this configuration belongs to
    - `namespace` string — Namespace for the configuration
    - `configurationTypeId` string — Type identifier for the configuration
    - `configuration` JsonNode
      - `empty` boolean
      - `valueNode` boolean
      - `containerNode` boolean
      - `missingNode` boolean
      - `array` boolean
      - `object` boolean
      - `nodeType` 'ARRAY' | 'BINARY' | 'BOOLEAN' | 'MISSING' | 'NULL' | 'NUMBER' | 'OBJECT' | 'POJO' | 'STRING'
      - `pojo` boolean
      - `number` boolean
      - `integralNumber` boolean
      - `floatingPointNumber` boolean
      - `short` boolean
      - `int` boolean
      - `long` boolean
      - `float` boolean
      - `double` boolean
      - `bigDecimal` boolean
      - `bigInteger` boolean
      - `textual` boolean
      - `boolean` boolean
      - `null` boolean
      - `binary` boolean
    - `updatedAt` string, date-time
    - `createdAt` string, date-time
  - `totalCount` integer — Total number of tenant configurations

## Other responses

- `400` — Bad request - Invalid request parameters or missing required headers
- `401` — Authentication required - Valid authentication token is missing or invalid
- `500` — Internal server error - An unexpected error occurred while processing the request

---

[API](https://skmtc.net/certifyos/apis/certify-api-layer.md) · [All operations](https://skmtc.net/certifyos/apis/certify-api-layer/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/certifyos/certify-api-layer/revisions/3d27e9019c7b/schema)
