curl --request DELETE \
--url https://api-testnet.mayybee.com/api/orders/{orderId} \
--header 'Content-Type: application/json' \
--data '
{
"maker": "0xYourWalletAddress"
}
'{
"success": true,
"message": "Order cancelled"
}Cancel an open order. Only the maker can cancel their own orders.
Security: The maker address is verified against the order before cancellation.
curl --request DELETE \
--url https://api-testnet.mayybee.com/api/orders/{orderId} \
--header 'Content-Type: application/json' \
--data '
{
"maker": "0xYourWalletAddress"
}
'{
"success": true,
"message": "Order cancelled"
}