The issue is similar to the following:
Description
I am able to send the request {{baseUrl}}/past_meetings/:meetingUUID
and receive meeting data:
{
"uuid": "riEDHzxdRXK4MishcM6FMg=="
"id": *********,
"host_id": "********",
"type": 2,
"topic": "*****",
"user_name": "*******",
"user_email": "******",
"start_time": "********",
"end_time": "**********",
"duration": 45,
"total_minutes": 669,
"participants_count": 28,
"dept": ""
}
This also works if i execute {{baseUrl}}/report/meetings/:meetingId
Problem
But if i try to execute any of the the followiing:
{{baseUrl}}/past_meetings/:meetingUUID/participants
{{baseUrl}}/report/meetings/:meetingId/participants
i do not receive any data about the participants:
{
"page_count": 0,
"page_size": 30,
"total_records": 0,
"next_page_token": "",
"participants": []
}
Additional context
I am using Postman for testing the API, as discussed here: