Lead Notes List
GET
/leads/notes/{lead_id}Retrieves notes for a specific lead.
Request
None
Responses
Success(200)
Unauthorized(401)
Not found(404)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
array [object {8}]
required
id
string
optional
rel_id
string
optional
rel_type
string
optional
description
string
optional
date_contacted
null
optional
addedfrom
string
optional
dateadded
string
optional
staff
string
optional
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"
}
Last modified: 2 months ago