Integrations Ecosystem
MantionPlus allows syncing leads captured during DMs directly to HubSpot, Mailchimp, Zapier, or a custom Webhook endpoint. We push JSON payloads automatically when emails or phone numbers are validated during message sequences.
Webhook Event Payload Sample
When a user submits their contact details, we fire an HTTP POST webhook request with the following structure:
{
"event": "lead.captured",
"data": {
"name": "Jane Doe",
"email": "jane.doe@example.com",
"instagram": "jane_doe",
"timestamp": 1782495702
}
}