Create Config Store Option
Inserts new Config Store Option.
Path parameters
-
Name of the Config Store Option that you would like to create
POST /platform/configuration/store/{config_option_id}
curl \
-X POST https://{{hostname}}/api/v1/platform/configuration/store/{config_option_id} \
-d '{"value":"string"}'
Request examples
{
"value": "string"
}
Response examples (201)
# 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 (400)
# Headers
x-cloud-error-codes: platform.config.store.already_exists
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}