MrCAPI Logo
Back to help list
Lead Ingestion

Ingesting Leads via HTTP Webhooks & API

Last updated: July 18, 2026
Integrate external lead sources using our ingestion API. ### 1. Ingestion Request Format Send a POST request with your API token: ```bash POST https://api.tringcrm.com/api/v1/public/forms/submit Content-Type: application/json Authorization: Bearer YOUR_API_TOKEN { "fullName": "Jane Doe", "email": "[email protected]", "phone": "+15550177", "source": "Landing Page Form", "message": "Interested in standard plan demo." } ``` ### 2. Error Response Codes - **401 Unauthorized**: Invalid or missing API token. - **422 Unprocessable Entity**: Invalid phone number format.

Was this guide helpful?