- 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 Notes Create
POST
/leads/note/create/{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 application/json
description
string
required
Example
{
"description": "lead notes"
}
Responses
🟢200Success
application/json
Body
data
object
required
id
string
required
rel_id
string
required
rel_type
string
required
description
string
required
date_contacted
null
required
addedfrom
string
required
dateadded
string
required
staff
string
required
message
string
required
Example
{
"data": {
"id": "1",
"rel_id": "1",
"rel_type": "lead",
"description": "lead notes",
"date_contacted": null,
"addedfrom": "1",
"dateadded": "2024-08-05 00:00:00",
"staff": "john doe"
},
"message": "success"
}
🟠401Unauthorized
🟠422Validation
🟠404Not found
Modified at 2024-09-05 09:37:34