Vco Inventory Unassign Edges

Vco Inventory Unassign Edges

Unassign and delete Edge inventory from Enterprise or MSP's Enterprise.

Privileges required:

UPDATE INVENTORY

Request
URI
POST
https://{api_host}/portal/rest/vcoInventory/unassignEdges
COPY
Request Body

Show optional properties

{
    "ids": [
        {}
    ]
}
{
    "enterpriseProxyId": 0,
    "ids": [
        "number"
    ]
}
integer
enterpriseProxyId
Optional

enterpriseProxyId

array of number
ids
Required

ids

Responses
200

Request was successfully processed

{
    "updatedEdges": [
        "string"
    ],
    "failedToUpdateEdges": [
        "string"
    ]
}
array of string
updatedEdges
Optional

updatedEdges

array of string
failedToUpdateEdges
Optional

failedToUpdateEdges


400

Invalid Request: Please check your request schema

Returns generic_400 of type(s) application/json
{
    "error": {
        "code": -32600,
        "message": "An error occurred while processing your request",
        "data": {
            "valid": false,
            "error": [
                {
                    "code": "string",
                    "message": "string",
                    "path": "string"
                }
            ],
            "warning": [
                {
                    "code": "string",
                    "message": "string",
                    "path": "string"
                }
            ]
        }
    }
}

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 '{"ids:"array"}' https://{api_host}/portal/rest/vcoInventory/unassignEdges