v1

latestOpenAPI 3.0.3Apache 2.02026-07-13161446.9 KB
Config API

Get configurations

This API endpoint responds with active configuration (result response)


Note The credentials field in the services configuration and

The private_key and key fields in the keys configuration will be omitted from the API response


get/v1/config

Query parameters

prettyboolean

If true, response will be in a human-readable format.

Response

Success

Example response

{
  "result": {
    "services": {
      "acmecorp": {
        "url": "https://example.com/control-plane-api/v1"
      }
    },
    "labels": {
      "id": "test-id",
      "version": "0.27.0"
    },
    "keys": {
      "global-key": {
        "scope": "read"
      }
    },
    "decision_logs": {
      "service": "acmecorp"
    },
    "status": {
      "service": "acmecorp"
    },
    "bundles": {
      "authz": {
        "service": "acmecorp"
      }
    },
    "default_authorization_decision": "/system/authz/allow",
    "default_decision": "/system/main"
  }
}