Track event

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"
    }
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!