Meetings API returns "Internal server error" when fetching list of live meetings

Hi,

API endpoint: https://api.zoom.us/v2/metrics/meetings
Parameters sent: group_id, from, to
Full URL: https://api.zoom.us/v2/metrics/meetings?group_id={valid_group_id}&from=2024-04-15&to=2024-04-15&type=live&page_size=300
Auth method: oAuth2

Description
When using the metrics/meetings API, I get an error message when trying to display live meetings.
Displaying past meetings works fine, so the my API call is well-formed.
All other calls (retrieve oAuth token, get list of active users, retrieve members of a specific group, etc.) are working properly.
The API call stopped working yesterday (Monday April 15) without any code change at our end.

Error
This is the data I get back from the API call:
[data] => stdClass Object(
[code] => 3
[message] => Internal server error. Please refresh page to try again or contact our support.
)
Any idea what’s going on? Thanks!

I found the solution: when requesting the list of live meetings, the meetings API doesn’t accept the group_id, from or to parameters. When removing these params from the REST call, it works.