Skip to main content

Delete Currency Tokens by Node

Deletes currency tokens under the specified node.

Request

DELETE /v2/admin/currency-tokens/nodes/{nodeID}

Parameters

NameTypeInDescription
nodeIDstringpathRequired. The ID of the node whose currency tokens will be deleted

Headers

NameDescription
AuthorizationRequired. Bearer token for authentication

Example

curl --location --request DELETE 'http://localhost:3453/v2/admin/currency-tokens/nodes/665ae536a6392b75cfd40352' \
--header 'Authorization: Bearer <token>'

Response

  • Status: 204 No Content
  • Body: none

Status Codes

Status CodeDescription
204No Content - Deletion successful
400Bad Request - Invalid node ID
401Unauthorized - Invalid or missing authentication token
404Not Found - Node not found
500Internal Server Error