Skip to main content
DELETE
/
tracker
/
transaction
/
{order_id}
/
delete
curl -X DELETE https://api2.ecomailapp.cz/tracker/transaction/transaction_1234/delete \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "transaction_data": {
      "shop": "someshop.com"
    }
  }'
{
  "deleted": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.ecomail.cz/llms.txt

Use this file to discover all available pages before exploring further.

order_id
string
required
Order ID from your shop.
transaction_data
object
Optional filter to match the transaction by shop.
curl -X DELETE https://api2.ecomailapp.cz/tracker/transaction/transaction_1234/delete \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "transaction_data": {
      "shop": "someshop.com"
    }
  }'
{
  "deleted": true
}