Skip to main content
DELETE
/
api
/
orders
/
{orderId}
Cancel order
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"
}

Path Parameters

orderId
string
required

Unique order identifier to cancel

Body

application/json
maker
string
required

Maker address for ownership verification

Response

Order cancelled successfully

success
boolean
message
string