Skip to main content
data = {
"api_key": self.api_key,
"events": [
{
"event_type": "your_valid_event_type",
"user_id": user_id,
"message": message,
"post_id": post_id,
}
]
}

If I send such a request to the api, will all the values be reached? I'm asking because in my case only the user_id reached.

Hi @Dmitrii Yannin 

Looks like message and post_id are event properties for your event type.

 You need to put them under the nested “event_properties” object as seen below so that they are ingested as event properties.

 


Reply