Issue with report/meetings/{meetingId}/participants API

@tommy this morning I found another issue with related API call. That is API from step 3.

/v2/report/users/{userId}/meetings?from=2020-02-29&to=2020-03-14&page_size=100

So this report today returns almost for all meetings information without user_name and user_email.

This is how part of JSON response looks like:
{
“uuid”: “9h1Ex9t+Sw+egmTjXc+huQ==”,
“type”: 3,
“topic”: “Some topic name”,
“user_name”: “Profesor 01”,
“user_email”: “pm1@…com”,
“start_time”: “2020-03-11T17:59:46Z”,
“end_time”: “2020-03-11T19:05:18Z”,
“duration”: 66,
“total_minutes”: 1051,
“participants_count”: 24
},
{
“uuid”: “w7zWijRHRm2k2MOfsi5NHw==”,
“id”: 191204613,
“host_id”: “UAuukmo-S5mNJ0_1yTCpxA”,
“type”: 3,
“topic”: “Some topic name”,
“start_time”: “2020-03-16T18:30:22Z”,
“end_time”: “2020-03-16T19:28:54Z”,
“duration”: 59,
“total_minutes”: 1116,
“participants_count”: 30
}

If you compare first and second object in JSON response you will see that in the second there is not information about user_name and user_email but also in the second object you can see it shows id and host_id but in the first not. This is same API returns different objects in one response.