Forum Discussion

skatiyar's avatar
skatiyar
Expert
4 years ago

Getting grouphub members join date

Hi All,

I am using v2 call to get grouphub members details (SELECT id, login FROM users where grouphub.id="xyz"). However looks like join date is missing from the data. Is there a API or a paramter I can use to get the member join date as well?

 

Thanks,
Sachin

 

  • A few more queries of interest on membership join dates can be found here: Membership LiQL examples 

    SELECT login, id, join_date FROM users WHERE node.id = '<node.type>:<node.id>'



  • A few more queries of interest on membership join dates can be found here: Membership LiQL examples 

    SELECT login, id, join_date FROM users WHERE node.id = '<node.type>:<node.id>'



  • Hi skatiyar  you can get the join date with the below v2 API

    SELECT join_date FROM users WHERE node.id = 'grouphub:${grouphubId}' and id = '${userId}'