PLACED ORDER EVENT EXAMPLE

{
   "event_id":1234,
   "event":"order_placed",
   "email":"[email protected]",
   "phone_number":"+911234567890",
   "properties":{
      "event_type":"charged",
      "transaction_value":29.98,
      "transaction_id":12345,
      "currency":"INR",
      "product_ids": ["prod1", "prod2", "prod3"],
      "collection_ids": ["col1", "col2", "col3"],
      "variant_ids": ["var1", "var2", "var3", "var4"]
   },
   "time":1695275574000
}

VIEWED PRODUCT EXAMPLE

{
    "event_id": "32228",
    "event": "viewed_product",
    "email": "",
    "phone_number": "+918178234289",
    "properties": {
        "event_type": "custom",
        "product_ids": [
            "18341"
        ],
        "collection_ids": [],
        "variant_ids": [
            "18341INR"
        ],
        "redirect_url": "https:\\/\\/ahujasons.com\\/product\\/woolen-shawl-as01183833.html"
    },
    "device_event_time": 1700051373,
    "profile_properties": {
        "first_name": "test",
        "subscribed_channels": [
            "EMAIL",
            "SMS",
            "WHATSAPP"
        ]
    }
}

ADDED TO CART EXAMPLE

{
   "event_id":1234,
   "event":"added_to_cart",
   "email":"[email protected]",
   "phone_number":"+911234567890",
   "properties":{
      "event_type":"custom",
      "cart_url":"abc.com",
      "product_ids": ["prod1", "prod2", "prod3"],
      "collection_ids": ["col1", "col2", "col3"],
      "variant_ids": ["var1", "var2", "var3", "var4"]
   },
   "time":1695275574000,
   "profile_properties": {
          "first_name": "John",
          "last_name": "Wick",
          "date_of_birth": "633834878",
          "city": "Mumbai",
          "state": "Maharashtra",
          "pin_code": "400026",
          "device": "iOS",
          "subscribed_channels": ["EMAIL","SMS","WHATSAPP"]
     }
}

STARTED CHECKOUT EXAMPLE

{
   "event_id":1234,
   "event":"started_checkout",
   "email":"[email protected]",
   "phone_number":"+911234567890",
   "properties":{
      "event_type":"custom",
      "checkout_url":"abc.com",
      "product_ids": ["prod1", "prod2", "prod3"],
      "collection_ids": ["col1", "col2", "col3"],
      "variant_ids": ["var1", "var2", "var3", "var4"]
   },
   "time":1695275574000,
   "profile_properties": {
          "first_name": "John",
          "last_name": "Wick",
          "date_of_birth": "633834878",
          "city": "Mumbai",
          "state": "Maharashtra",
          "pin_code": "400026",
          "device": "iOS",
          "subscribed_channels": ["EMAIL","SMS","WHATSAPP"]
     }
}