Description
I am trying to understand json data received from hook. Attached the json received for participant_left
- What are the id and user_id in object->participant
- Are above ids fixed all time?
- Is entire meeting start data is duplicated? If so then is there any benefit of tracking meeting_start/meeting_end data? As will get all info using participant joined and left events.
- what is uuid?
- what is account id?
Which App Type (OAuth / Chatbot / JWT / Webhook)?
Webhook
Which Endpoint/s?
definition of data passed json
{
“event”: “meeting.participant_joined”,
“payload”: {
“object”: {
“id”: “212996017”,
“type”: 2,
"uuid": “4Qa/rGoiTsdas==”,
“topic”: “Learning Workshop”,
“host_id”: “jiCBdpYcxzcsd”,
“duration”: 90,
“timezone”: “Asia/Kolkata”,
“start_time”: “2020-04-11T05:24:56Z”,
“participant”: {
"id": “jiCBdpYpRnuesdfsdfssssuNMg”,
** “user_id”: “16732320”,**
“join_time”: “2020-04-11T05:24:47Z”,
“user_name”: “Stratbeans Consulting”
}
},
“account_id”: “Q_ryUsdfsdfw3Q”
}
}