Forum Discussion
2 Replies
- Tarun5 years agoMaven
Hi v-vemami ,
You can simply use the users v2 API:
SELECT * from users
For more information please have a look at the following Documentation,
https://developer.khoros.com/khoroscommunitydevdocs/docs/users
Please Give Kudos if you find this post useful and also mark this as Accepted Solution if this is the required solution.
Regards
Tarun Kumar
Sign in to react to this post Hello v-vemami ,
To get details of a particular user and their roles:
User Details:
SELECT login,first_name,last_name,email FROM users WHERE id = 'USER_ID'
User Roles:
SELECT id, name FROM roles WHERE users.id = 'USER_ID'
If my response helped you, please give kudo and accept as solution.
Thank you!Sign in to react to this post