Skip to main content
Solved

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

  • 15 June 2022
  • 1 reply
  • 261 views

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

Hi, @ViniciusSantosFocus!

 

Execute this query:

 

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

}

}

 


Reply