[{"label":"Latest (0.1.0)","version":"latest"}]
cric-r1

Multi Set Parameter

Description

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

Request

URL

URL


post
https://{api_host}/v0alpha1/cmdata
Copy

Request Body

Request Body

MultiSet of mimetype application/json Required

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

Response

Response

Response Body

Response Body

200 OK

Returns array of CMWriteResult of type application/json

The update was successful.

{
	"result": {
		"cell_id": "string",
		"operation": "add",
		"parameter_name": "string",
		"parameter_type": "string",
		"parameter_value": {}
	},
	"status": "SUCCESS"
}
CMValue
result Optional

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


string
status Optional

Indicates success or failure for this write operation.

Possible values are: SUCCESSFAILURE

Errors

Errors

CMWriteResult
400

The request is of the correct content-type but is incorrectly formed in some fashion: missing required fields, using wrong types for valid fields, or not capable of being processed as the expected input.

Code Samples

Code Samples

cURL Command

curl -X POST -H "Content-Type: application/json" -d '{"policy":"TRANSACTION","values":[{"cell_id":"string","operation":"add","parameter_name":"string","parameter_type":"string","parameter_value":{}}]}' https://{api_host}/v0alpha1/cmdata


[{"label":"Latest (0.1.0)","version":"latest"}]
cric-r1
Feedback

Was this page helpful?