How to get users with their assigned roles using the Import/Export job?

I’d like to know this as well. The workaround I’ve had to use is this:

  1. Get the list of roles using /api/v2/roles
  2. Get the list of users using /api/v2/users
  3. Get a list of users in each role using /api/v2/roles/{id}/users

Combine user info from 2 & 3.

It would be great if I could simply use step 2, with the roles attached to each user. I could then easily paginate (if many users exist), and each user would have their respective roles attached.