Delete network node
DELETE/api/v1/networks/nodes/:nodeId
This API endpoint removes a network node identified by the provided nodeId. Once network node is deleted, it cannot be retrieved. This operation does not affect other data related to network, machine.
Request
Path Parameters
nodeId stringrequired
The nodeId - uuid of the network node
Responses
- 200
Success response
- application/json
- Schema
- Example (from schema)
- Delete network node example
Schema
success boolean
message string
status string
statusCode int32
errorCode string
subErrors object[]
payload boolean
{
"success": true,
"message": "string",
"status": "string",
"statusCode": 0,
"errorCode": "string",
"subErrors": [
{}
],
"payload": true
}
Delete network node response example
{
"success": true,
"message": "Network node deleted successfully",
"status": "OK",
"statusCode": 200,
"errorCode": "",
"subErrors": [
{}
],
"payload": true
}
Loading...