Hi there
I’m trying to add more infromation to a report for the whole enrolled users to a specific course
the first step was something like this
GET
{url_root}learn/v1/courses/report?page={k}&idCourse={id_course}&page_size= xx
Awesome! I have my usernames list
the response has only these parameters
{"username":"qqq","first_name":"pppp","last_name":"pppp","status":"0","enrollment_date":"2021-11-04 14:57:40","time_in_course":null,"last_access":null,"completion_date":null,"score":"0.00"}
Now the need is add all the custom fileds defined for each username
In the api catalogue I didn’t find methos with the username in input. All work with userid (this info is missing in the first response) as inquery parameters.
How can I collect the userid strating from username?
Thanks for your help