Find Config Store Option by name
Find Config Store Option by name.
Path parameters
-
Name of the Config Store Option that you would like to find
GET /platform/configuration/store/{config_option_id}
curl \
-X GET https://{{hostname}}/api/v1/platform/configuration/store/{config_option_id}
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"
]
}
]
}