mirror of https://github.com/dapr/docs.git
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:
parent
b824545206
commit
762a349802
|
@ -65,7 +65,11 @@ curl -X GET 'http://localhost:3500/v1.0/configuration/mystore?key=myConfigKey'
|
||||||
> The above command returns the following JSON:
|
> The above command returns the following JSON:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
[{"key":"myConfigKey","value":"myConfigValue"}]
|
{
|
||||||
|
"myConfigKey": {
|
||||||
|
"value":"myConfigValue"
|
||||||
|
}
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Subscribe Configuration
|
## Subscribe Configuration
|
||||||
|
|
Loading…
Reference in New Issue