Update Config Store Option
Update existing Config Store Option.
Path parameters
-
Name of the Config Store Option that you would like to modify
Query parameters
-
version string
If specified then checks for conflicts against the version stored in the persistent store (returned in 'x-cloud-resource-version' of the GET request)
PUT /platform/configuration/store/{config_option_id}
curl \
-X PUT https://{{hostname}}/api/v1/platform/configuration/store/{config_option_id} \
-d '{"value":"string"}'
Request examples
{
"value": "string"
}
Response examples (200)
# Headers
x-cloud-resource-version: string
x-cloud-resource-created: string
x-cloud-resource-last-modified: string
# Payload
{
"name": "string",
"value": "string",
"changed": true
}
Response examples (404)
# Headers
x-cloud-error-codes: platform.config.store.not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}
Response examples (409)
# Headers
x-cloud-error-codes: platform.config.store.version_conflict
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}