cart/updateNotes

Add, update or remove a Note on the cart

Fields

notestring

The note to set on the cart. If not provided, defaults to an empty string (clears the note).

Updates the note field on the cart, allowing customers to add special instructions, delivery preferences, or any other text-based information that should be associated with their order.

//Add a note
Tapcart.action("cart/updateNotes", {
  note: "Please leave package at the front door if no one is home"
});

//Remove a note
Tapcart.action("cart/updateNotes", {});