Skip to main content
Solved

Get Phase ID

  • February 2, 2021
  • 1 reply
  • 764 views


How can I get a phase ID using API? The 'Show Pipe' request returns the name of the phases, but not the IDs, I understand I can get it from the URL of the phase but I'm trying to retrieve it from the API.

Thanks

Best answer by Roberto Chavarria

Hello there Amanda! Here is an example of how you can find the phase IDs of your pipe:
 

{
pipe(id:12345){
phases{
id
name

}
}
}

 

1 reply

Roberto Chavarria
Pipefy Staff
Forum|alt.badge.img+5

Hello there Amanda! Here is an example of how you can find the phase IDs of your pipe:
 

{
pipe(id:12345){
phases{
id
name

}
}
}