Skip to main content
POST
https://api2.ecomailapp.cz
/
account
/
settings
/
webhook
curl -X POST https://api2.ecomailapp.cz/account/settings/webhook \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-webhook-url.com"
  }'
{
  "success": true
}
The webhook sends POST requests as JSON with a 10-second timeout.
url
string
required
Target webhook URL.
curl -X POST https://api2.ecomailapp.cz/account/settings/webhook \
  -H "key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://your-webhook-url.com"
  }'
{
  "success": true
}