Skip to main content


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

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