Cart Webhooks

Events

cart.createdA cart has been created

Fields

NameTypeDescription
cartCart The cart this event is related to
locationLocationTiny The location the cart belongs to
organizationOrganizationTiny The 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