OFREP provider configuration

OFREP configuration to provide information about the remote flag management system, to configure the OpenFeature SDK providers. This endpoint will be called during the initialization of the provider.

get/ofrep/v1/configuration

Headers

If-None-Matchstring

The request will be processed only if ETag doesn't match any of the values listed.

Response

OFREP metadata response

namestring

name of the flag management system

Example response

{
  "name": "flagd",
  "capabilities": {
    "cacheInvalidation": {
      "polling": {
        "minPollingInterval": 60000
      }
    },
    "flagEvaluation": {
      "unsupportedTypes": [
        "object",
        "int",
        "float"
      ]
    }
  }
}

Changes