我正在尝试在此处使用 SendInBlue API 发送事件。
当我发送事件时,它会正确返回 204 - 但我在这里没有收到任何事件,我创建了一个由事件触发的自动化流程,但它不发送。
const axios = require("axios");
const url = 'https://in-automate.sendinblue.com/api/v2/trackEvent';
(async() => {
try {
const event = await axios.post(
url,
JSON.stringify( {
email: 'myemail@emailprovider.co',
event: 'USER_SUBSCRIBED'
}),
{
Accept: 'application/json',
'Content-Type': 'application/json',
'ma-key': 'xkeysib-MY_v3_API_KEY'
},
);
console.log(event);
} catch (err) {
console.log(JSON.stringify(err))
}
})();
有没有一种方法可以让我在控制台上看到来自此调用的事件?