error-handling
Webhook Error Handling​
Webhook Configuration Errors​
| Error | Solution |
|---|---|
| 400 Invalid URL | Ensure URL is valid and uses http:// or https:// |
| 401 Unauthorized | Check your access token is valid and not expired |
| 404 Not Found | No webhook subscription exists - create one first |
Example Error Response​
{
"message": "Invalid webhook URL",
"status": 400,
"validationErrors": [
{
"field": "webhookUrl",
"message": "URL must be a valid HTTP or HTTPS URL"
}
]
}