API Call to check the names/emails/usernames of users enrolled in Courses
Can someone provide the API Call to extract the names/emails/usernames of users enrolled in particular Courses?
We need to this to set up a database for a ID card company to extract these details from Docebo to provide the users access via ID cards..
Page 1 / 1
You’ll want Manage > User … this particular endpoint has a “minimal” option that you should explore.
Hmm, I think in this case I would go one of two routes:
Try this endpoint, /course/v1/courses/{id}/enrollments, course > Courses > Returns enrollments associated to the given course This one lets you plug in one course Docebo ID and get list of enrollments and their details back.
Use Reports: You could instead build out a report if you had multiple courses or wanted more restrictions built into it, i.e. all users except certain branches. You could then use the API to call the report details.
@Bfarkas- Can you please explain the second step in details, extracting the report is fine but how can I then use API?
@arnab.duttagupta2022 If you are asking how to find the course ID to be able to use it in the API, this KB article tells you how to find it in the url. Don’t let the title of the article fool you,scroll down to the section labeled “Retrieving the course ID and the session ID"
@Bfarkas- Can you please explain the second step in details, extracting the report is fine but how can I then use API?
First, important to note that these were not two steps, but two unique and seperate approaches. The first one lets you use only the API, but is one call per course. The second one you configure a new report with the settings you want for it, then you don’t have to export it, you simply use the API to tell it to refresh and to call the current data within the report directly. Theres a bunch of writeups about this, you can start with the ones below:
No, as you need to know the user already to use that one, look and follow the path of what I said above, you only need the course ID on that one and then it returns an array of the users enrolled in the course which I think is what you were asking for. Make sure to switch in the services menu to “course” this one is not on the default learn service area
Yes I get your logic, completely makes sense however the call you are mentioning- I am not getting that call in sandbox or I am not understanding! For ILT sessions we have a similar call under ILT sessions?
Also I found the steps to your second suggestion by providing the Report ID which I created I can only extract by CSV however I want it in JSON file to help our vendor to get access to our Docebo enrollments for creating ID cards or is there any other way?
Also I found the steps to your second suggestion by providing the Report ID which I created I can only extract by CSV however I want it in JSON file to help our vendor to get access to our Docebo enrollments for creating ID cards or is there any other way?
For the report piece, there are multiple endpoints to get the output, sound slike you are using the ‘Export results as CSV’, you want ‘Get report results paginated’ which will be JSON:
If you want a dump of info to get started, then pull a report to make sure you get the correct info. You can include the course codes in the report.
Then if you want to use the API you have the basic elements to call the enrollment status from the API call.