Solved

Sending values.

  • 15 March 2024
  • 1 reply
  • 29 views

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.

icon

Best answer by Saish Redkar 15 March 2024, 16:56

View original

1 reply

Userlevel 7
Badge +10

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