Updated configuration_api.md

Changed the Configuration API response from an array to dictionary

Signed-off-by: Sri Lasya Malladi <40951986+srilasya02@users.noreply.github.com>
This commit is contained in:
Sri Lasya Malladi 2023-09-22 15:28:17 -07:00 committed by GitHub
parent b824545206
commit 762a349802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -65,7 +65,11 @@ curl -X GET 'http://localhost:3500/v1.0/configuration/mystore?key=myConfigKey'
> The above command returns the following JSON:
```json
[{"key":"myConfigKey","value":"myConfigValue"}]
{
"myConfigKey": {
"value":"myConfigValue"
}
}
```
## Subscribe Configuration