curl --request POST \
--url https://api.skulabs.com/customer/add_note \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "507f1f77bcf86cd799439011",
"note": "<string>"
}
'{
"customer": {
"_id": "507f1f77bcf86cd799439011",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"address": {},
"notes": [
{
"user_id": "507f1f77bcf86cd799439011",
"time": "2025-01-15T12:00:00.000Z",
"note": "<string>"
}
],
"price_lists": [
"<string>"
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"log": [
{
"user_id": "507f1f77bcf86cd799439011",
"action": "<string>",
"details": {},
"time": "2025-01-15T12:00:00.000Z"
}
],
"store_id": "507f1f77bcf86cd799439011"
}
}Add a note to a customer record.
curl --request POST \
--url https://api.skulabs.com/customer/add_note \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "507f1f77bcf86cd799439011",
"note": "<string>"
}
'{
"customer": {
"_id": "507f1f77bcf86cd799439011",
"name": "<string>",
"company": "<string>",
"phone": "<string>",
"email": "<string>",
"address": {},
"notes": [
{
"user_id": "507f1f77bcf86cd799439011",
"time": "2025-01-15T12:00:00.000Z",
"note": "<string>"
}
],
"price_lists": [
"<string>"
],
"tags": [
"507f1f77bcf86cd799439011",
"507f1f77bcf86cd799439012"
],
"log": [
{
"user_id": "507f1f77bcf86cd799439011",
"action": "<string>",
"details": {},
"time": "2025-01-15T12:00:00.000Z"
}
],
"store_id": "507f1f77bcf86cd799439011"
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Note added, returns updated customer
Customer object with full details
Show child attributes