@moran-frumer I got it working except I am trying to display the current number of registered attendees. in a text box then it’s all complete.
$item('#totalAttendees').text = data.attendanceInfo.numberOfAttendees.toLocaleString();
This is normally no problem at all but for some reason I just can’t manage to pull that information. Am I missing something?
I am able to pull the title and start time using the following;
$item('#sessionDateText').text = data.bookedEntity.singleSession.start.toLocaleString();
$item('#sessionServiceText').text = data.bookedEntity.title;
Just not the current number of attendees or participants registered for the group.
Thanks so much in advance and sorry to bother you on this.