GET LEADS
get leads from your companies
curl -H "Authorization: <Token-Key>" -X POST -d "start_date=<start_date>&end_date=<end_date>&page=<page>" https://leadcombo.com/api/v1/company/leads
Company Leads
POST
https://leadcombo.com/api/v1/company/leads
This endpoint allows you to get leads. body send parameter type "application/x-www-form-urlencoded".
Headers
Name
Type
Description
Authorization
string
Authentication token to checking access management.
Request Body
Name
Type
Description
limit
number
Default leads per page 25
page
number
Default first pages 1
start_date
string
Default Timestamp beginning of day 2020-01-01
end_date
string
Default Timestamp current time 2020-01-01
{
"success": true,
"data": [
{
"id": "FBLEAD_03_828865677557533_2020-01-03T11:33:09+0000",
"full_name": "Steve Roger",
"mobile_number": "+66199999999",
"email": "[email protected]",
"line": "line_id",
"signed_up_at": "2020-01-01T09:00:00.235+07:00",
"source": "recommedation_from_customer",
"properties": {
"series": "Captain America"
}
}
],
"page": 1,
"total": 60,
"message": ""
}
Last updated
Was this helpful?