Using session_key to query the session did not return anything

I want to use this API https://developers.zoom.us/docs/api/video-sdk/#tag/sessions/get/videosdk/sessions to query multiple sessions with the same session key. I found that as long as I fill in the session key, the interface will not return any data, no matter how I change the other parameters.

API Call

https://api.zoom.us/v2/videosdk/sessions?from=2025-07-21&to=2025-07-22&type=past&session_key=52e6cb29-47fb-4c37-892b-ba16589e0517

response:

{
    "from": "2025-07-22",
    "to": "2025-07-22",
    "page_size": 30,
    "next_page_token": "",
    "sessions": []
}

However, searching by session name works fine.