- Introduction
- Staff API Overview
- Leads API Overview
- Call Logs API Overview
- Tickets API Overview
- Deals Management API Overview
- List DealsGET
- Create a DealPOST
- Update a DealPUT
- Get a Deal DetailsGET
- List Deals SourcesGET
- List Deals PipelineGET
- Add a Deal CommentPOST
- Update a Deal CommentPUT
- Add an AttachmentPOST
- Delete an AttachmentDELETE
- List a Deal ServicesGET
- Get a Deal Service DetailGET
- Add a Deal ServicePOST
- Update a Deal ServicePUT
Generate Report
GET
/leads/report
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Responses
🟢200Success
application/json
Body
data
array [object {9}]Â
required
id
stringÂ
optional
name
stringÂ
optional
date
stringÂ
optional
email
stringÂ
optional
phonenumber
stringÂ
optional
lead_status
stringÂ
optional
status
stringÂ
optional
lead_type
stringÂ
optional
color
stringÂ
optional
page
objectÂ
required
current_page
integerÂ
required
from
integerÂ
required
to
integerÂ
required
total
integerÂ
required
per_page
integerÂ
required
last_page
integerÂ
required
next
integerÂ
required
previous
integerÂ
required
message
stringÂ
required
Example
{
"data": [
{
"id": "1",
"name": "rvr",
"date": "2024-08-05 14:07:36",
"email": "[email protected]",
"phonenumber": "03002221223",
"lead_status": "New",
"status": "1",
"lead_type": "Sales",
"color": "#7cb342"
}
],
"page": {
"current_page": 1,
"from": 1,
"to": 1,
"total": 1,
"per_page": 5,
"last_page": 0,
"next": -1,
"previous": 0
},
"message": "success"
}
🟠401Unauthorized
Modified at 2024-09-05 09:38:26