Hello Michael, thank you for the reply, but it did not work for me.
See if I make the following requisition:
GET / v2 / users / 1sOzbiypQS-sfr7ds4ayfw / recordings? From = 2019-01-03 & amp; to = 2019-02-24 & amp; page_size = 300 HTTP / 1.1
I get a list of meetings, one of which I have problem follows below:
{
“uuid”: “etLDOJL1QjCgguVtCJpXEg ==”,
“id”: 850739249,
“account_id”: “TKlTaWUsR9KIcYunsNomaw”,
“host_id”: “1sOzbiypQS-sfr7ds4ayfw”,
“topic”: “JUSPRO mediation meeting - Justice without Process!”,
“type”: 2,
“start_time”: “2019-01-30T12: 28: 05Z”,
“timezone”: “America / Sao_Paulo”,
“duration”: 19,
“total_size”: 0,
“recording_count”: 0,
“share_url”: “https://juspro.zoom.us/recording/share/AdUY7t_3kbESznUsl7ax_qNDd2iulfzs6oqWcmtb4QSwIumekTziMw”,
“recording_files”:
},
If I try to delete this way (with UUID)
DELETE / v2 / meetings / etLDOJL1QjCgguVtCJpXEg ==? HTTP / 1.1
I get:
{
“code”: 300,
“message”: “Invalid meetingId”
}
If I try the way you mentioned it (with UUID encoded)
DELETE / v2 / meetings / etLDOJL1QjCgguVtCJpXEg% 3D% 3D? HTTP / 1.1
I get:
{
“code”: 300,
“message”: “Invalid meetingId”
}
And if I try to delete with ID only
DELETE / v2 / meetings / 850739249? HTTP / 1.1
I get:
{
“code”: 3001,
“message”: “Meeting 850739249 was not found or timed out.”
}
As you can see in GET the meeting exists and does not contain any files. If I try to delete it from the administrative panel I can delete it.
Could you tell me why this happens?
Thank you.