Zoom Meeting mapping meeting with webhook response

I am using ZoomMtg to create a meeting and join same personal meeting for every call.
Now i get response after meeting ends from webhook which is set in Meeting SDK app in marketplace.
I am having issue mapping the meeting with the webhook response. to save recording data.
I need to know can i send a unique token or id for every meeting and get it back in the particular webhook response.
Please help.
@elisa.zoom @donte.zoom @tommy

Hi @gauravdev a meeting identifier should be included in meeting webhooks. Can you please share the webhook JSON response here with sensitive info obscured? Thanks!

1 Like

Hello @gianni.zoom , Thank you for the reply
this is how i get the response. now I need to send a unique identifier when a meeting starts and get it back in this response.

{
“payload”: {
“account_id”: “”,
“object”: {
“uuid”: “”,
“id”: “”,
“account_id”: “”,
“host_id”: “”,
“topic”: “”,
“type”: 4,
“start_time”: “”,
“timezone”: “Asia/Calcutta”,
“host_email”: “”,
“duration”: 1251,
“total_size”: ,
“recording_count”: 2,
“share_url”: “”,
“recording_files”: [
{
“id”: “”,
“meeting_id”: “”,
“recording_start”: “2023-03-28T07:11:00Z”,
“recording_end”: “2023-03-28T07:12:45Z”,
“file_type”: “MP4”,
“file_extension”: “MP4”,
“file_size”: 5214768,
“play_url”:“”,
“download_url”: “”,
“status”: “completed”,
“recording_type”: “shared_screen_with_speaker_view”
},
{
“id”: “”,
“meeting_id”: “”,
“recording_start”: “2023-03-28T07:11:00Z”,
“recording_end”: “2023-03-28T07:12:45Z”,
“file_type”: “M4A”,
“file_extension”: “M4A”,
“file_size”: 1662423,
“play_url”: “”,
“download_url”: “”,
“status”: “completed”,
“recording_type”: “audio_only”
}
],
“on_prem”: false
}
},
“event_ts”: 1675322006328,
“event”: “recording.completed”,
“download_token”: “”
}

@gianni.zoom please reply here. Thanks

Hi @gauravdev ,

I see, I understand more clearly now! You cannot send a unique identifier when a meeting starts and get it back in this response. Since you’re using PMI to create meetings, look to the “uuid” to distinguish between PMI created meetings. Does that help?