Skip to main content
DELETE
https://api2.ecomailapp.cz
/
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
}
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
}