Solved

API call to list all fields in a pipe & which phase each is in

  • 20 July 2020
  • 1 reply
  • 493 views

Userlevel 4
Badge +1
  • Participating Frequently
  • 7 replies

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

icon

Best answer by lais_lot 20 July 2020, 15:49

View original

1 reply

Userlevel 4

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