Solved

How can I get Assignee ID from a card using pipefy API?

  • 15 June 2022
  • 1 reply
  • 215 views

Userlevel 1

I would like to know how can I get Assignee ID from a card using pipefy API?

icon

Best answer by alicereis 16 June 2022, 19:13

View original

1 reply

Userlevel 6
Badge +5

Hi, @ViniciusSantosFocus!

 

Execute this query:

 

{
card (id: 12345678) {
assignees {
id
name
}

}

}

 

Reply