Corrected configuration value request example

When coding the set configuration value API, it became clear that a
different request body would be beneficial. This commit updates the spec
with the changes.

Change-Id: Iee9ed8239e566de9db3304992a6486ae0794becb
This commit is contained in:
Jay Dobies 2014-08-13 10:59:23 -04:00
parent 806672a4b3
commit 1b27395381
1 changed files with 9 additions and 5 deletions

View File

@ -454,12 +454,16 @@ Request Example:
.. code-block:: json
{
"parameters" : {
"database_host" : "10.11.12.13",
"database_password" : "secret"
[
{
"name" : "database_host",
"value" : "10.11.12.13"
},
{
"name" : "database_password",
"value" : "secret"
}
}
]
Response Codes: