DATA PUSHERS
add leads to your companies
Example
await anxios.post('https://leadcombo.com/api/v1/lead/create_lead', {
lead: {
full_name: "FirstName LastName",
email: "Email",
mobile_number: "0901234567",
field_data: [{
name: "bussiness",
values: "Value of bussiness"
}, {
name: "message",
values: "value of message"
}]
}
}, {
headers: {
'API-KEY': 'Your api key'
}
}).then(res => {
console.log(res)
}).catch(err => {})POST https://leadcombo.com/api/v1/lead/create_lead
Headers
API-KEY
string
Authentication private key to checking access management.
Request Body
lead
object
List of files and their sources to add to dataset.
The lead object contains the following keys:
Name
Type
Description
full_name
String
First name and Last name
String
mobile_number
String
Phone number
field_data
Array
Extra parameter for leads. Object in array with name and value
[{ "name": "field name", "values": "Value of field" }]
How to get API KEY
URL https://leadcombo.com/data_pushers
Create data pushers

Click + New Data Pushers

Enter Name, select Type and trigger Enabled checkbox
After you enter all information click Create Data pusher button
Click Edit button in column Action on table you need to use API.

You will see private key
private key is your API-KEY for request Headers
Last updated
Was this helpful?