Configuration Delete Configuration

Configuration Delete Configuration

Deletes the specified configuration profile (by id). On success, returns an object indicating the number of objects (rows) deleted (1 or 0).

Privileges required:

DELETE ENTERPRISE_PROFILE, or

DELETE OPERATOR_PROFILE

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

Show optional properties

{
    "id": 0
}
{
    "enterpriseId": 0,
    "id": 0
}
integer
enterpriseId
Optional

enterpriseId

integer
id
Required

id

Responses
200

Request was successfully processed

Returns configuration_delete_configuration_result of type(s) application/json
This response body class contains all of the following: Inlineconfiguration_delete_configuration_result0
{
    "id": 123,
    "rows": 1
}

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"}' https://{api_host}/portal/rest/configuration/deleteConfiguration