Skip to main content

Hi, I would like to do an API call to return all the fields in a pipe and and the phase where each of them are. I have the call that just lists all the fields, but not which phase they are in

Hi, I would like to do an API call to return all the fields in a pipe and and the phase where each of them are. I have the call that just lists all the fields, but not which phase they are in

 

Helo @jaco6 , how are you doing today?

You can use the query below:

{   pipe(id:1234567){     start_form_fields{       id       label       type       options       phase{         id         name       }     }     phases{       id       name       fields{         id         label         type         options       }     }   } }

 

Hope it helps. If you have any questions, let me know! 


Reply