Cart Webhooks

Events

cart.createdA cart has been created

Fields

NameTypeDescription
cartCartThe cart this event is related to
locationLocationTinyThe location the cart belongs to
organizationOrganizationTinyThe organization the cart belongs to

Example

{
  "event": "cart.created",
  "cart": {
    "...": "..."
  },
  "location": {
    "id": "LOC123",
    "name": "Richmond"
  },
  "organization": {
    "id": "01H0S97D8RX4RBFHHTB1HE7SFR",
    "name": "My Awesome Business"
  }
}

In this article