curl --request POST \
--url https://api.growi.io/api/public/v1/tracking_events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"event_name": "cart_viewed",
"occurred_at": "2023-11-07T05:31:56Z",
"visitor_uid": "<string>",
"event_data": {},
"subtotal": 123,
"currency": "usd",
"conversion_platform": "shopify",
"order_id": "<string>",
"order_type": "one_time",
"payment_id": "<string>",
"external_user_id": "<string>",
"quantity": 123,
"campaign_affiliate_id": "<string>",
"subscription_start_date": 123,
"subscription_end_date": 123,
"product_id": "<string>"
}'