Body
application/json
curl --request DELETE \
--url https://api.tradearies.dev/v1/orders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"orderId": 123
}'{
"orderId": 123,
"status": "<string>"
}Cancel an existing order
curl --request DELETE \
--url https://api.tradearies.dev/v1/orders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"orderId": 123
}'{
"orderId": 123,
"status": "<string>"
}Was this page helpful?