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,
    "edgeId": 0,
    "edgeIds": [
        0
    ],
    "ids": [
        0
    ]
}
integer
enterpriseId
Optional

enterpriseId

integer
id
Optional

id

integer
edgeId
Optional

edgeId

array of integer
edgeIds
Optional

edgeIds

array of integer
ids
Optional

ids

Responses
200

Request was successfully processed

Returns Array of edge_delete_edge_result_item of type(s) application/json
[
    {
        "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