- APIs
- API Reference
- Client Notes
-
Overview
-
API Reference
- Appointment
- Quotes
- Invoices
- Payments
- Clients
- Client Forms
- Client Documents
- Client Notes
- Client Alerts
- Client Allergies
- Client Communications
- Leads
- Services
- Products
- Packages
- Schedules
- Marketing Sources
- Resources
- Settings
- Tax
- Locations
- Users
- Discounts
- Gift Vouchers
- Labels
- Rooms
- Equipment
- Reports
- Cancellation Policy
- Medical Conditions
- Drugs
- Forms
-
Timesheets
-
Webhooks
List client notes
Returns a list of all client notes per one client

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
}
]
}