Im using the node sdk to call createEvent to setup transactional emails. I can see in the API logs its returning a 202, I can see the metric show as a trigger for the flow, in the request body I can see the custom properties in the object. But when I go to edit the transactional email within the flow the Preview Event Info shows no properties. I did notice when you view the metric activity feed theres none available even though I see the requests in the api logs.
Request body:
{
"data": {
"type": "event",
"attributes": {
"properties": {
"foo": "bar"
},
"metric": {
"data": {
"type": "metric",
"attributes": {
"name": "test_event"
}
}
},
"profile": {
"data": {
"type": "profile",
"id": "XXX",
"attributes": {
"email": "XXX"
}
}
}
}
}
}