Use the GET /configStore/{{bundleId}}/{{configStoreSettingId}}
endpoint to retrieve a single config store setting from a bundle.
Path parameters
Parameter |
Value |
Description |
bundleId |
string(required) |
This field represents a configuration file that contains a bundle of settings. |
configStoreSettingId |
string(requited) |
ID of setting to retrieve. |
Status codes
Code |
Reason |
200 |
Success. |
403 |
The specified configuration bundle is unavailable. |
404 |
Resource not found. |
Response schema definitions
ConfigStoreSetting
- Single configuration setting.
Property |
Type |
Description |
id * |
string |
The id of the configuration setting. |
listValue |
array[string] |
The list of values for the configuration setting. This is used when the setting has a list of string values. |
mapValue |
Map[string, ] |
The map of key/value pairs for the configuration setting. This is used when the setting has a map of string keys and values. |
stringValue |
string |
The value of the configuration setting. This is used when the setting has a single string value. |
type * |
Type |
The type of configuration setting. This could be a single string, list of strings, or map of string keys and values. |
|
|
|