Enterprise 10.9.1, we are currently pulling members that belong to group in our portal into a table. We're listing group name, group owner, member id, date member was create in portal, and member email. But now trying to find out if it's possible to include date the member was added into the group. The portal group management shows the date a person was add to group, -not when they were added to portal. So it seems there must be a way to pull that, like group.members.get_joined() ?? Any hints on how to go about this?
Thanks
Solved! Go to Solution.
use group.user_list()
returns a dictionary as shown below
you will need to convert the integer 'joined' date property to the readable format you desire
use group.user_list()
returns a dictionary as shown below
you will need to convert the integer 'joined' date property to the readable format you desire
Much appreciated Clubdebambos. Got it working and date converted.
Thanks