Config
Set an instance cache value.
ROLES: INSTANCE_ADMIN USER: true SERVICE ACCOUNT: true
POST
Set an instance cache value.
Authorizations
Bearer JWT token or API Key (sk-*).
Body
application/json
Response
OK.
Last modified on September 5, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ROLES: INSTANCE_ADMIN USER: true SERVICE ACCOUNT: true
curl --request POST \
--url https://api.revoengine.com/api/v1/config/cache/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"key": "instance:feature:flags",
"value": {
"enabled": true,
"source": "admin"
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({key: 'instance:feature:flags', value: {enabled: true, source: 'admin'}})
};
fetch('https://api.revoengine.com/api/v1/config/cache/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/config/cache/create"
payload = {
"key": "instance:feature:flags",
"value": {
"enabled": True,
"source": "admin"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)Bearer JWT token or API Key (sk-*).
OK.
curl --request POST \
--url https://api.revoengine.com/api/v1/config/cache/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"key": "instance:feature:flags",
"value": {
"enabled": true,
"source": "admin"
}
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({key: 'instance:feature:flags', value: {enabled: true, source: 'admin'}})
};
fetch('https://api.revoengine.com/api/v1/config/cache/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.revoengine.com/api/v1/config/cache/create"
payload = {
"key": "instance:feature:flags",
"value": {
"enabled": True,
"source": "admin"
}
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)