Description
Hi, we are building an OAuth App that listens to end meetings event and then goes to the metrics api and gets the qos data.
for some reason a lot of times when i try to get the past meeting qos (/metrics/meetings/{meetingId}/participants/qos) i get the error 3001 meeting does not exists.
even tough i got the meeting uuid from the meeting end event .
if i try later the meeting will be present how ever this is a problem if the fail calls take from our daily rate limit quota.
in addition since (/metrics/meetings/{meetingId}/participants/qos) does not returns alot of rows we are thinking of using /metrics/meetings/{meetingId}/participants/{participantId}/qos when we will expect to make more calls to /metrics/meetings/{meetingId}/participants/qos then participants how ever i tried to send a test request to /metrics/meetings/{meetingId}/participants/qos using the test request in the api reference but again I’m getting
{
“code”: 3001,
“message”: “Meeting does not exist: [meeting_uuid].”
}
for a meeting uuid that works in (/metrics/meetings/{meetingId}/participants/qos)
Error
{
“code”: 3001,
“message”: “Meeting does not exist: [meeting_uuid].”
} Which App Type (OAuth / Chatbot / JWT / Webhook)?
OAuth with webhook notifications Which Endpoint/s?
/metrics/meetings/{meetingId}/participants/qos
/metrics/meetings/{meetingId}/participants/{participantId}/qos
for example meeting uuid = v9J8nDWuQISv7xxG1ib2KQ%3D%3D is available in the
list meeting participants qos api which is working however consuming this meetings took 36k requests out of our quota.
i’m trying if this will take less using the get meeting participant qos api for this meeting uuid and for (exmaple) participant uuid = 5IEDmmt4QaOckMOAacNi_w i get
{
“code”: 3001,
“message”: “Meeting does not exist: v9J8nDWuQISv7xxG1ib2KQ==.”
}