Skip to main content
Question

How can I obtain the whole transcript of a particular user through the API?

  • November 5, 2025
  • 2 replies
  • 23 views

I've been checking the Docebo API documentation and I can't find how to do it. I don't know if it's part of Reports, Users, or Enrollments.

Basically, I want to enter the user's Id and get that user's entire transcript.

This is urgent, any help would be appreciated.

2 replies

  • Author
  • Newcomer
  • November 6, 2025

did this : 

/course/v1/courses/enrollments?user_id[]=20878&enrollment_completion_date[]=2025-11-05

even when I got some data for that particular user, the filter by “enrollment_completion_date[]=2025-11-05” is not working, although I dont get an error. I even tried “enrollment_completion_date=2025-11-05”, with the same result

 


brandonbillings
Helper II
Forum|alt.badge.img+1

I think there are two issues with your sample you posted:

The filters for completion date are completed_at_start and completed_at_end. And you need to pass a full UTC value like YYYY-MM-DD HH:MM:SS (url encoded)

course/v1/courses/enrollments?user_id[]=9999&completed_at_start=2022-01-01%2000%3A00%3A00&completed_at_end=2025-01-01%2000%3A00%3A00