Get lead notes

Return all notes for one lead

image-png-Mar-22-2024-01-24-05-8317-PM/leads/{lead_id}/notes

https://api.oauth.pabau.com/{api_key}/leads/{lead_id}/notes

Request

 

Query Parameters:  
api_key *  
lead_id * System ID for the requested lead
per_page If not sent, default 20. Max 50
page If not sent, first are returned in DESC order
order ASC or DESC

 

Response sample

application/json

{
  "success": true,
  "total": 4,
  "notes": [
    {
    "id": 4,
      "Note": "Updated field: LeadStatus",
      "CreatedDate": "2023-04-26 10:55:55",
    "user_id": 5
    },
    {
    "id": 3,
      "Note": "interested in botox services",
      "CreatedDate": "2023-04-26 10:55:49",
    "user_id": 5
    },
    {
    "id": 2,
      "Note": "Updated field: LeadStatus",
      "CreatedDate": "2023-03-15 17:06:13",
    "user_id": 5
    },
    {
    "id": 1,
      "Note": "Updated field: LeadStatus",
      "CreatedDate": "2023-03-15 16:59:22",
    "user_id": 5
    }
  ]
}