post https://api.allegrow.co/v1/email/validate-async
This endpoint allows you to submit an email for validation and immediately returns a 200 response.
The validation result will be sent to your configured webhook endpoint once processing is complete.
This is recommended for bulk validations or when you don't need immediate results.
Webhook Configuration
Your webhook endpoint must be configured prior to making the first request - this is something your success manager will help you set up during onboarding.
The validation result will be sent as a POST request to your webhook URL.
Webhook Payload
The webhook will receive a POST request with the validation result. See the WebhookPayload schema for the complete structure.
Example payload
{
"email": "[email protected]",
"allegrowStatus": "safe",
"metadata": {
"unmodifiedPayload": "that you submitted on your initial call"
}
}