Skip to main content

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