OpenFeature Evaluation
Configuration
Overview
OpenFeature Evaluation
Namespaces
Rollouts
OpenFeature Evaluation
Configuration
OFREP provider configuration
GET
/
ofrep
/
v1
/
configuration
curl --url https://try.flipt.io/ofrep/v1/configuration \
--header 'Accept: application/json'
{
"name": "<string>",
"capabilities": {
"cacheInvalidation": {
"polling": {
"enabled": true,
"minPollingIntervalMs": 123
}
},
"flagEvaluation": {
"supportedTypes": [
"<string>"
]
}
}
}
curl --url https://try.flipt.io/ofrep/v1/configuration \
--header 'Accept: application/json'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
OK
Was this page helpful?
curl --url https://try.flipt.io/ofrep/v1/configuration \
--header 'Accept: application/json'
{
"name": "<string>",
"capabilities": {
"cacheInvalidation": {
"polling": {
"enabled": true,
"minPollingIntervalMs": 123
}
},
"flagEvaluation": {
"supportedTypes": [
"<string>"
]
}
}
}