I am looking for an API that takes a user's UUID as input and returns all the courses they are enrolled in, along with the enrollment status (subscribed / in_progress / completed).
We have tried the following endpoints but none gave the right output:
GET /report/v1/mytranscript — returns data for the currently authenticated user only, does not accept a UUID to fetch another user's data
GET /course/v1/courses/enrollments — permission denied even when called with an admin token
GET /analytics/v1/dashboard/branches/users/list — returns all users in a branch, cannot be filtered down to a single specific user
Is there an official endpoint that accepts a user UUID and returns their complete enrollment list with course details and status? Any help or workaround is appreciated.
