cancel_order
Cancel a cryptocurrency order on the Luno MCP Server by specifying the order ID to manage trades and balances efficiently.
Instructions
Cancel an order
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order_id | Yes | Order ID to cancel |
Input Schema (JSON Schema)
{
"properties": {
"order_id": {
"description": "Order ID to cancel",
"type": "string"
}
},
"required": [
"order_id"
],
"type": "object"
}