Use the PUT /configStore/{{bundleId}}/{{configStoreSettingId}}
endpoint to create or updates a a config store setting (bundle). This is an advanced operation with minimal validation. Incorrect use of this operation can harm the integrity of your PingFederate configuration. Please ensure you have specified the correct bundle name, setting ID, and setting value before invoking this operation.
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 create/update. |
Status codes
Code |
Reason |
200 |
Configuration setting created/updated. |
400 |
The request was improperly formatted or contained invalid fields. |
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. |
::: |
|
|