Skip to main content

Delete Node

Deletes an existing node from the system.

Request

DELETE /v2/admin/node/{node_id}

Path Parameters

NameTypeInDescription
node_idstringpathRequired. The ID of the node to delete

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --request DELETE \
--url '\{\{baseUrl\}\}/v2/admin/node/67d1887219270f00501b8d3f' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...'

Response

Success response indicating the node was deleted.

Status Codes

Status CodeDescription
200Success - Node deleted successfully
401Unauthorized - Invalid or missing authentication token
404Not Found - Node ID does not exist
500Internal Server Error