/bff/lead/create
Creates a new lead/inquiry. Optionally creates or links an existing customer by email. The lead starts in "new" status.
LeadpostBffLeadCreate
Parameters
11 body
Body · 11
subjectstringRequiredLead subject/title.
Length: 1–∞
descriptionstringDetailed description of the inquiry.
sourcestring | string | string | string | stringHow the lead was acquired.
customerEmailstringCustomer email — creates or finds existing contact.
customerPhonestringCustomer phone.
customerFirstNamestringCustomer first name.
customerLastNamestringCustomer last name.
assignedMemberIdnumberOrganisation member ID to assign.
estimatedValuenumberEstimated deal value.
followUpDatestringNext follow-up date (ISO timestamp).
internalNotestringInternal note for the sales team.
Request
POST /bff/lead/create
curl -X POST "https://api.bizkithub.com/bff/lead/create" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"subject": "example_subject",
"description": "example_description",
"customerEmail": "example_customerEmail",
"customerPhone": "example_customerPhone",
"customerFirstName": "example_customerFirstName",
"customerLastName": "example_customerLastName",
"assignedMemberId": 0,
"estimatedValue": 0,
"followUpDate": "2026-03-01",
"internalNote": "example_internalNote"
}'Response
JSON payload
{
"success": false,
"id": 0
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.