List client notes

Returns a list of all client notes per one client

image-png-Mar-22-2024-01-24-05-8317-PM /clients/{contact_id}/notes

https://api.oauth.pabau.com/{api_key}/clients/{contact_id}/notes

Request

 

Query Parameters:  
api_key *  
contact_id * (int) System ID of the contact
per_page (int) If not sent, the default is 20. Maximum 50
page (int) If not sent, the first 20 result will be sent
order ASC or DESC. Default DESC

Response sample

application/json

{
"success": true,
  "total": 1,
  "notes": [
    {
    "id": 1,
    "Note": "Note text",
      "CreatedDate": "2023-03-15 15:35:36",
    "user_id": 3
    }
  ]
}