Skip to main content

Dear Community,

We are exploring ways to interface with Docebo to enable bulk exporting of our upcoming training schedule. The goal is to provide our partners with an easy method to display the training schedule directly on their websites.

Has anyone implemented a similar solution, perhaps integrating a schedule from Docebo into their own site? We’d love to hear about your experiences or ideas!

Thank you!

Hi Gali, your use case requires implementing a routine that calls multiple APIs, The workflow from the Docebo side would look like this:

  1. Returns a list of all of the courses on your platform, and filter our only the “classroom” type
    get    /learn/v1/courses
  2. Returns sessions associated to each one of the ILT courses
    get    /course/v1/courses/{course_id}/sessions
  3. Returns events list for each session 
    get    /course/v1/sessions/{session_id}/events

Hope this helps!


Reply