---
title: "Get Configuration Values"
method: GET
path: "/config"
tags: ["Business Configuration"]
---

# Get Configuration Values

`GET /config`

Returns the application configuration schema and the stored values for the requested scope.

## Query parameters

- `scopeId` string, required
- `commerceEnv` 'paas' | 'saas'

## Headers

- `x-gw-ims-org-id` string, required

## Response `200`

The configuration schema and the stored configuration values for the requested scope. Password fields are masked in the response.

- object — Current configuration values for the given scope
  - `schema` union[], required
    - union
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'list', required
        - `options` object[], required
          - `label` string, required
          - `value` string, required
        - `selectionMode` 'single', required
        - `default` string, required
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'list', required
        - `options` object[], required
          - `label` string, required
          - `value` string, required
        - `selectionMode` 'multiple', required
        - `default` string[], required
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'text', required
        - `default` string, required
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'password', required
        - `default` '', required
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'email', required
        - `default` union, required
          - ''
          - string, email
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'url', required
        - `default` union, required
          - ''
          - string, uri
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'tel', required
        - `default` union, required
          - ''
          - string
      - object
        - `name` string, required
        - `label` string
        - `description` string
        - `env` string[]
        - `type` 'boolean', required
        - `default` boolean, required
  - `values` object, required
    - `scope` ConfigScope, required
      - `id` string, required
      - `code` string, required
      - `level` string, required
    - `config` ConfigValue[], required
      - `name` string, required
      - `value` union, required
        - boolean
        - string
        - string[]
      - `origin` ConfigOrigin, required
        - `code` string, required
        - `level` string, required

## Other responses

- `400` — The request is invalid or could not be parsed.
- `401` — You are not authorized to access this resource. Ensure the IMS token and the x-gw-ims-org-id header are correctly set and valid.
- `403` — The access token is valid, but it is not allowed to access the requested organization or operation.
- `500` — An unexpected server error occurred.

---

[API](https://skmtc.dev/adobe/apis/app-management-api.md) · [All operations](https://skmtc.dev/adobe/apis/app-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/adobe/app-management-api/revisions/4b39b5956be9/schema)
