How to get Calendar Ids of a group?

Can anyone please help me out on this one?

Parents Reply
  • CalendarContext is case sensitive. Here's an example, written in Velocity, that shows up to 10 calendars in the current contextual group:

    <ul>
    #foreach($calendar in $calendar_v1_calendars.List("%{PageSize=10,PageIndex=0,CalendarContext='Group',CalendarReferenceId=$core_v2_group.Current.Id}"))
    #each
        <li>$calendar.Id</li>
    #nodata
        <li>No calendars exist in the current group.</li>
    #end
    </ul>
    

Children