Skip to main content

Query Regarding User Details from Monday.com

  • April 10, 2024
  • 3 replies
  • 171 views

Hello All,

I’m attempting to retrieve user details from Monday.com via API. However, upon comparing the results from the API with user profiles, I’ve noticed a discrepancy in the user IDs. The IDs fetched from the API appear to be numeric, whereas the IDs displayed in the profiles are alphanumeric. Could someone advise me on how to obtain the alphanumeric IDs as shown in the attached screenshot?

image

Thank you!

3 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • April 11, 2024

Hello there @PR_kotla,

The ID you show in your screenshot is a custom field added manually. It is not the monday’s user ID. Our API does not retrieve those custom fields.

To get the monday user IDs of your users, you can use a query like this one:

{
  users(limit: 10000) {
    name
    id
    email
  }
}

Let me know if you have any other questions 🙂

Cheers,
Matias


  • Author
  • New Participant
  • April 11, 2024

Thanks for update @Matias.Monday


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • April 11, 2024

Happy to help @PR_kotla !!