Edge Delete Edge

Edge Delete Edge

Deletes the specified Edge(s) (by id or an array of ids).

Privileges required:

DELETE EDGE

Request
URI
POST
https://{api_host}/portal/rest/edge/deleteEdge
COPY
Request Body
{
    "enterpriseId": 0,
    "id": 0,
    "ids": [
        0
    ]
}
integer
enterpriseId
Optional

enterpriseId

integer
id
Optional

id

array of integer
ids
Optional

ids

Responses
200

Request was successfully processed

[
    {
        "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 '{}' https://{api_host}/portal/rest/edge/deleteEdge