- 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
Get Lead Details
GET
/leads/detail/{lead_id}
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
object
required
id
string
required
name
string
required
title
null
required
company
null
required
phonenumber
string
required
email
string
required
status
string
required
date
string
required
chat_id
string
required
chat
null
required
chat_date
null
required
message
string
required
Example
{
"data": {
"id": "1",
"name": "john",
"title": null,
"company": null,
"phonenumber": "01232XXXXXX",
"email": "john@yopmail.com",
"status": "1",
"date": "2024-08-05 14:07:36",
"chat_id": "uyisa77",
"chat": null,
"chat_date": null
},
"message": "success"
}
🟠404Not found
🟠401Unauthorized
Modified at 2024-09-05 09:36:50