- 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
Lead Files
GET
/leads/files/{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 *****************
Body Params multipart/form-data
object {0}
Responses
🟢200Success
application/json
Body
data
array [object {5}]
required
id
string
optional
file_name
string
optional
dateadded
string
optional
attchementURL
string
optional
lead_id
string
optional
message
string
required
Example
{
"data": [
{
"id": "1",
"file_name": "calendly.svg",
"dateadded": "2024-08-09 19:10:47",
"attchementURL": "http://chatforcelocal.com/uploads/leads/1/calendly.svg",
"lead_id": "1"
}
],
"message": "success"
}
🟠404Not found
🟠401Unauthorized
Modified at 2024-09-05 09:38:13