Delete Node
Deletes an existing node from the system.
Request
DELETE /v2/admin/node/{node_id}
Path Parameters
| Name | Type | In | Description |
|---|---|---|---|
node_id | string | path | Required. The ID of the node to delete |
Headers
| Name | Description |
|---|---|
Authorization | Required. 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 Code | Description |
|---|---|
| 200 | Success - Node deleted successfully |
| 401 | Unauthorized - Invalid or missing authentication token |
| 404 | Not Found - Node ID does not exist |
| 500 | Internal Server Error |