Skip to content
View as Markdown

POST Handle Bounce (with /handle/ path)​

POST
/public/bounce_handler/{service_name}/handle/{security_code}

Webhook endpoint for email service providers to report bounces, complaints, and unsubscribes. This is the variant with /handle/ in the path. Accepts any HTTP method. Validates the security code and processes the bounce event for supported services. Custom services can be handled via the fluent_crm_handle_bounce_{service_name} filter.

Parameters​

Path Parameters

service_name*

Email service provider name.

Type
string
Required
Valid values
"mailgun""pepipost""postmark""sendgrid""sparkpost""elasticemail""postalserver""smtp2go""brevo""tosend"
security_code*

Security code for webhook authentication. Must match the stored bounce key.

Type
string
Required

Request Body​

application/json
JSON
{
"additionalProperties": "string"
}

Responses​

Bounce processed successfully.

application/json
JSON
{
"success": 0,
"message": "string",
"service": "string",
"result": "string",
"time": 0
}

Playground​

Variables
Key
Value
Body

Samples​

Powered by VitePress OpenAPI