I’m using report API of a specific user to get the meetings between a date range. /report/users/${userId}/meetings
According to pagination specs, I will get next_page_token
if there are results that can’t be fit into the current response. But i’m getting zero results along with next_page_token.
For a request body
{
from: '2023-06-29',
to: '2023-07-01',
page_size: 300,
type: 'pastJoined'
}
I’m getting results
{
from: '2023-06-29',
to: '2023-07-01',
page_count: 1,
page_size: 300,
total_records: 0,
next_page_token: 'xexkrI-----------oXs2RNimCN9qxJOxt2',
meetings: []
}