post https://in-automate.brevo.com/api/v2/trackEvent
CURL Example
curl --request POST \
--url https://in-automate.brevo.com/api/v2/trackEvent \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'ma-key: ' \
--data '
{
"email": "[email protected]",
"event": "cart_updated",
"eventdata": {
"data": {
"added_product": [
{
"currency": "EUR",
"name": "Wrist watch",
"type": "accessories",
"price": "50.00"
}
]
}
},
"properties": {
"additionalProp": "string"
}
}