Lead Ingestion
Configuring Lead Ingestion Web Forms
Last updated: July 18, 2026
To capture inquiries directly from your website or landing pages, MrCAPI provides robust Web Form endpoints.
### 1. Creating a Form Token
In your dashboard, navigate to **Settings > Integrations** and check your leads endpoint details.
- Create or check the ingestion webhook parameters.
- Save to generate your unique credentials.
### 2. Integrating on Your Website
Send a POST request from your frontend form to our API endpoint:
```bash
POST https://api.tringcrm.com/api/v1/public/forms/submit
Content-Type: application/json
{
"formToken": "YOUR_FORM_TOKEN",
"fullName": "Alex Smith",
"email": "[email protected]",
"phone": "+15550199",
"message": "Interested in a subscription trial."
}
```
### 3. Duplicate Suppression
Upon submission, MrCAPI scans the database for existing matches. If found, the lead activity is automatically appended to the original owner's timeline.
