Attribuly API Docs
  • Introduction
  • Authentication
  • Endpoint
    • Google Looker Studio
  • API Reference
    • Event summary
    • Order: first and last touchpoint
    • Order: total conversion journey
    • The number of visitors who visited the landing page and then completed the event.
  • Common data structures
    • Customer
    • Order
    • Product
    • Event
      • Page viewed
      • Cart viewed
      • Product viewed
      • Collection viewed
      • Search submitted
      • Product added to cart
      • Product removed to cart
      • Lead form
      • Checkout started
      • Checkout address info submitted
      • Checkout contact info submitted
      • Checkout shipping info submitted
      • Payment info submitted
      • Checkout completed
Powered by GitBook
On this page

Was this helpful?

  1. Common data structures
  2. Event

Product removed to cart

{
  "clientId": "Required, string type, represents the unique identifier of the client",
  "clientIp": "Required, string type, represents the IP address of the client",
  "context": "Required, please refer to the context definition in the basic structure",
  "data": {
    "cartLine": {
      "cost": {
        "totalAmount": {
          "amount": "Required, numeric type, represents the total amount",
          "currencyCode": "Required, string type, represents the currency code (e.g., USD)"
        }
      },
      "merchandise": {
        "id": "Required, string type, represents the unique identifier of the product",
        "image": {
          "src": "Required, string type, represents the image link"
        },
        "price": {
          "amount": "Required, numeric type, represents the unit price amount",
          "currencyCode": "Required, string type, represents the currency code (e.g., USD)"
        },
        "product": {
          "id": "Required, string type, represents the unique identifier of the product",
          "title": "Required, string type, represents the product title",
          "type": "Optional, string type, represents the product type",
          "untranslatedTitle": "Required, string type, represents the untranslated product title",
          "url": "Required, string type, represents the product URL",
          "vendor": "Required, string type, represents the vendor name"
        },
        "sku": "Optional, string type, represents the stock keeping unit",
        "title": "Optional, string type, represents the product variant title",
        "untranslatedTitle": "Optional, string type, represents the untranslated product variant title"
      },
      "quantity": "Required, numeric type, represents the quantity of the product"
    }
  },
  "id": "Required, string type, represents the unique identifier of the event or record",
  "name": "Required, string type, represents the event name: product_removed_from_cart",
  "seq": "Required, numeric type, represents the sequence number",
  "timestamp": "Required, string type, represents the timestamp (ISO 8601 format)",
  "type": "Required, string type, represents the form type"
}
{
  "clientId": "6F8A4697-ccd9-4082-bfdc-c1defb4cf572",
  "clientIp": "5.34.216.118",
  "context": context,
  "data": {
    "cartLine": {
      "cost": {
        "totalAmount": {
          "amount": 40,
          "currencyCode": "USD"
        }
      },
      "merchandise": {
        "id": "51295154929877",
        "image": {
          "src": "https://cdn.shopify.com/s/files/1/0643/2614/0117/files/AppleRoyalGalaOrganic1kg.webp?v=1743471356"
        },
        "price": {
          "amount": 20,
          "currencyCode": "USD"
        },
        "product": {
          "id": "8931051700437",
          "title": "Apple Royal Gala Organic 1kg",
          "type": "",
          "untranslatedTitle": "Apple Royal Gala Organic 1kg",
          "url": "/products/apple-royal-gala-organic-1kg?variant=51295154929877",
          "vendor": "App-Dmap"
        },
        "sku": "",
        "title": null,
        "untranslatedTitle": null
      },
      "quantity": 2
    }
  },
  "id": "sh-6206cfc9-F3E7-4EA1-03CF-095ED368308B",
  "name": "product_removed_from_cart",
  "seq": 1,
  "timestamp": "2025-04-23T09:42:12.455Z",
  "type": "standard"
}
PreviousProduct added to cartNextLead form

Last updated 7 days ago

Was this helpful?