Back to Tools
add_customer_note
write:customersAdd a note to a customer record. Great for recording preferences, issues, or follow-up reminders.
Input Parameters
Parameters
| Property | Type | Description |
|---|---|---|
customerIdrequired | string | Customer UUID |
noterequired | string | Note content (1-2000 chars) |
category | string(default: general) | Note category (general, preference, issue, followup) |
Response
Response Schema
| Property | Type | Description |
|---|---|---|
customerIdrequired | string | Customer UUID |
noteAddedrequired | boolean | Success indicator |
totalNotesrequired | number | Total notes after adding |
Example
Requestjson
{
"type": "tool",
"name": "add_customer_note",
"params": {
"customerId": "customer-uuid",
"note": "Prefers appointments in the morning. Allergic to certain products.",
"category": "preference"
}
}Responsejson
{
"success": true,
"data": {
"customerId": "customer-uuid",
"noteAdded": true,
"totalNotes": 5
}
}cURL Example
curl -X POST https://app.bizily.io/api/mcp \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{\n "type": "tool",\n "name": "add_customer_note",\n "params": {\n "customerId": "customer-uuid",\n "note": "Prefers appointments in the morning. Allergic to certain products.",\n "category": "preference"\n }\n}'Required scope: This tool requires the write:customers scope. Make sure your API key has this permission enabled in Settings → Developer.