Select to view content in your preferred language

Listing members that belong to a group AND access when the member joined the group

495
2
Jump to solution
07-18-2022 12:09 PM
WilliamBlake1
New Contributor II

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

1 Solution

Accepted Solutions
Clubdebambos
Occasional Contributor III

Hi @WilliamBlake1 

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

Clubdebambos_0-1658221104518.png

 

~ learn.finaldraftmapping.com

View solution in original post

0 Kudos
2 Replies
Clubdebambos
Occasional Contributor III

Hi @WilliamBlake1 

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

Clubdebambos_0-1658221104518.png

 

~ learn.finaldraftmapping.com
0 Kudos
WilliamBlake1
New Contributor II

Much appreciated Clubdebambos. Got it working and date converted.

Thanks