API Endpoint - GET /meetings/{meetingId}/meeting_summary
Link - https://developers.zoom.us/docs/api/rest/reference/zoom-api/methods/#operation/Getameetingsummary
Description
at the beginning I use this endpoint: https://api.zoom.us/v2/meetings/97672375721 and I got this data
“uuid”: “e/vqza1OTr+9SOpX1LqPnQ==”,
“id”: 97672375721,
To use this endpoint /meetings/{meetingId}/meeting_summary a I have to double encode UUID.
In PHP it will be
$uuId = “e/vqza1OTr+9SOpX1LqPnQ==”;
//Double URL Encode
$uuId = urlencode($uuId);
$uuId = urlencode($uuId);
echo $uuId; //e%252Fvqza1OTr%252B9SOpX1LqPnQ%253D%253D
so I send this url: https://api.zoom.us/v2/meetings/e%252Fvqza1OTr%252B9SOpX1LqPnQ%253D%253D/meeting_summary and got 3001 code
Error?
Response for the API
Status code 404
{ “code”: 3001, “message”: “Meeting does not exist: e/vqza1OTr+9SOpX1LqPnQ==.”}