Configuration Update Configuration

Configuration Update Configuration

Updates the specified configuration profile record according to the attribute:value mappings specified in the _update object.

Privileges required:

UPDATE ENTERPRISE_PROFILE, or

UPDATE OPERATOR_PROFILE

Request
URI
POST
https://{api_host}/portal/rest/configuration/updateConfiguration
COPY
Request Body

Show optional properties

{
    "id": 0,
    "_update": {}
}
{
    "id": 0,
    "enterpriseId": 0,
    "_update": {
        "name": "string",
        "description": "string",
        "version": "string",
        "effective": "string"
    }
}
integer
id
Required

id

integer
enterpriseId
Optional

enterpriseId

object
_update
Required

_update

Responses
200

Request was successfully processed

Returns rows_modified_confirmation of type(s) application/json
{
    "rows": 1
}
string
error
Optional

An error message explaining why the method failed

integer
rows
Required

The number of rows modified


400
Returns generic_400 of type(s) application/json
Operation doesn't return any data structure

500
Returns generic_500 of type(s) application/json
Operation doesn't return any data structure

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{"id:"integer","_update:"object"}' https://{api_host}/portal/rest/configuration/updateConfiguration