Notes are the running history of a customer account: what your team wrote down manually, plus every entry Admoji records automatically for that customer — transactions, recurring changes, refunds, fulfillments and more. You read and write them from the customer’s Notes tab or through the API, and any note tied to a specific order also shows up inside that order.
Step 1: Add a note to a customer
Go to For Customers > Search and open the customer.
Click the Notes tab.
Click Add Notes in the top-right of the section.
Type your note in the Note field of the Add Note window. The note cannot be empty.
Click Save.
The note appears in the History table right away.
Step 2: Read the note history
The History table on the Notes tab shows every entry on the account, manual and automatic — the same entries you see on the Logs tab — newest first:
Note — the text of the note.
Order ID — the order the note belongs to, when there is one. Click it to open that order.
Created By — the user who wrote the note, or <CRM> or the name of the module for entries Admoji records automatically.
Created Date — the date and time it was written.
Type — where the entry came from, for example custom for a manual note, or transaction, recurring, refund, shipping, fulfillment or integration for automatic entries.
Step 3: Add a note to an order with the API
The Add Notes button only creates notes on the customer. To attach a note to a specific order, send it through the Open API with the order's ID:
$ curl -X POST 'https://openapi.admoji.com/api/v2/open/customers/notes/9241111' \
-H "Authorization: ApiKey secret_492796e421a34666a5695d53cd311111" \
-H "Content-Type: application/json" \
-H "Idempotency-Key: 3a2ebd06-e52f-47d2-92c4-66a107022f8e" \
-d '{
"Note": "Customer asked to delay the shipment",
"OrderID": 1234567
}'Replace
9241111in the URL with the customer ID.Idempotency-Keyis required: send a new unique value (for example, a GUID) with every call.Noteis required and can be up to 512 characters.OrderIDmust be an order of that customer. Otherwise the call fails with Order {OrderID} was not created for the customer. Leave it out to add the note to the customer only.
The note appears in the customer's History table with that Order ID, Type custom and Created By <OpenApi>, and inside the order on its Notes tab. See Add note in the API Reference for the full reference.
Step 4: See the notes of a single order
Open the customer and go to the Orders section.
Open the order you want to review.
Click the Notes tab, next to Transactions, Products, and Fulfillments.
The tab lists only the notes attached to that order, with the same Note, Created By, Created Date, and Type columns. If the order has no notes yet, the tab is empty.
Related articles