Skip to main content
Solved

Query Member ID Users

  • September 25, 2020
  • 1 reply
  • 225 views

Paulo Ribas
Pipefy Staff

Is it possible - through the API - to query member IDs all at once?
If so, how can I do it, I searched the documentation and didn't find it. thanks in advance

 

Best answer by Marcos Carvalho

Hey Paulo, 

 

Yes it is. 

 

Here the query: 

 

{
organizations(ids: ORG_ID) {
name
created_at
members {
user {
id
name
}
role_name
}
}
}

 

 

1 reply

Marcos Carvalho
Pipefy Staff
Forum|alt.badge.img+6
  • Pipefy Staff
  • Answer
  • September 25, 2020

Hey Paulo, 

 

Yes it is. 

 

Here the query: 

 

{
organizations(ids: ORG_ID) {
name
created_at
members {
user {
id
name
}
role_name
}
}
}