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

Yes @tommy, I’m talking here about this API: https://api.zoom.us/v2/report/users/{userId}/meetings?from=2020-02-27&to=2020-03-19&page_size=100

So you see this API is returning all report meetings by the user and in this API sometimes is missing information about user_email and user_name. If I try to call this API with userId 5Dh6RG3PS9qsm8FUe963bg then I got following response.

Just to know I removed other objects and show only 3 for comparison. If you take a look you will see for all objects same host_id, but first two objects doesn’t have properties user_name and user_email like third object.

These are report meetings for only one user:

{
  "from": "2020-02-27",
  "to": "2020-03-19",
  "page_count": 1,
  "page_size": 100,
  "total_records": 23,
  "next_page_token": "",
  "meetings": [
    {
      "uuid": "XarYyqy0T+6FWcYGgB/8Jg==",
      "id": 111111111,
      "host_id": "5Dh6RG3PS9qsm8FUe963bg",
      "type": 3,
      "topic": "Some topic name",
      "start_time": "2020-03-18T17:08:27Z",
      "end_time": "2020-03-18T17:45:14Z",
      "duration": 37,
      "total_minutes": 194,
      "participants_count": 7
    },
    {
      "uuid": "1k2MU4YQS/W84OhN0PIyng==",
      "id": 111111111,
      "host_id": "5Dh6RG3PS9qsm8FUe963bg",
      "type": 3,
      "topic": "Some topic name",
      "start_time": "2020-03-18T18:20:30Z",
      "end_time": "2020-03-18T18:46:49Z",
      "duration": 27,
      "total_minutes": 139,
      "participants_count": 7
    },
    {
      "uuid": "i7YGe+tAROqrkjHpdTabLA==",
      "id": 111111111,
      "host_id": "5Dh6RG3PS9qsm8FUe963bg",
      "type": 3,
      "topic": "Some topic name",
      "user_name": "Some user name",
      "user_email": "Some user email",
      "start_time": "2020-03-18T20:00:18Z",
      "end_time": "2020-03-18T20:51:41Z",
      "duration": 52,
      "total_minutes": 528,
      "participants_count": 11
    }
  ]
}