- 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
Upload Lead File
POST
/leads/upload-attachment/{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
attachment
file
required
Responses
🟢200Success
application/json
Body
status
string
required
message
string
required
attachment
object
required
id
string
required
file_name
string
required
dateadded
string
required
attchementURL
string
required
lead_id
string
required
Example
{
"status": "success",
"message": "file uploaded",
"attachment": {
"id": "1",
"file_name": "calendly.svg",
"dateadded": "2024-08-09 07:10:47",
"attchementURL": "http://chatforcelocal.com/uploads/leads/1/calendly.svg",
"lead_id": "1"
}
}
🟠422Validation
🟠404Not found
🟠401Unauthorized
Modified at 2024-09-05 09:38:20