Solved

Get Phase ID

  • 2 February 2021
  • 1 reply
  • 566 views

Userlevel 5


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

icon

Best answer by Roberto Chavarria 2 February 2021, 21:38

View original

1 reply

Userlevel 6
Badge +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

}
}
}

 

Reply