Skip to main content
Question

Report - Virtual Classroom Links

  • June 6, 2021
  • 1 reply
  • 68 views

Tracey.Lewis
Novice I

We’ve got a few hundred ILT sessions happening and want to double check the custom virtaul URLs uploaded into Docebo. Is there a way to run a report which gives you the custom URLs listed in seperate events? 

1 reply

Forum|alt.badge.img
  • Docebian
  • October 5, 2021

Hi Tracey,

I’m not sure if the following endpoint can help:

Get an event
GET    /course/v1/events/{event_id}

 

It should show the custom_url

 

 

You need to get the event ID, and you can get that for each session by using:

Returns events list for the session
GET    /course/v1/sessions/{session_id}/events

 

And the session ID for each course using:

Returns sessions associated to the given course
GET    /course/v1/courses/{course_id}/sessions

 

I hope this helps.

 

Best