Multi Set Parameter

Multi Set Parameter

Sets the value of multiple parameters for multiple cells.

Note: This operation is for testing only and should not be relied upon when developing rApps. Use jobs mediated through the data management service instead.

Request
URI
POST
https://{api_host}/v0alpha1/cmdata
COPY
Request Body

The set of configuration changes to be made, and their policy.

MultiSet of type(s) application/json
Required

Show optional properties

{
    "values": [
        {
            "cell_id": "string",
            "parameter_name": "string"
        }
    ]
}
{
    "values": [
        {
            "cell_id": "string",
            "parameter_name": "string",
            "parameter_type": "string",
            "operation": "string"
        }
    ],
    "policy": "string"
}
array of object
values
Required

An object encapsulating information about one CM parameter value for one cell id.

string
policy
Optional

For future use to define an error handling or rollback policy for this set of changes. If no policy is provided NON_TRANSACTION is the default.

Possible values are : TRANSACTION, NON_TRANSACTION,
Responses
200

The update was successful.

Returns Array of object of type(s) application/json
"CMMultiResults Object"

400

The request is of the correct content-type but is either incorrectly formed in some fashion or one or more of the changes requested failed. In the latter case the response indicates which succeeded and which failed (and why).

Returns Array of object of type(s) application/json
"CMMultiResults Object"

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"values:"array"}' https://{api_host}/v0alpha1/cmdata