Solved

Listing field conditions actions via API

  • 5 February 2024
  • 2 replies
  • 35 views

Userlevel 1

HI, there!

I'm trying to get a complex list of conditions for a pipe via GraphQL, but exploring it in https://developers.pipefy.com/graphql it does not give me  the list of actions (hide or show a field).

How can I list these actions via API?

The interface does not give a good overview of the implemented logic there…

Thank you,

Raimundo Santos

icon

Best answer by genietim 6 February 2024, 09:11

View original

2 replies

Userlevel 7
Badge +12

The API you are looking for is the FieldCondition: https://api-docs.pipefy.com/reference/objects/FieldCondition/

It is linked to, e.g., the phase query: https://api-docs.pipefy.com/reference/queries/phase/

→ query{phase{fieldConditions{actions{...}}}}

Userlevel 1

Thank you, @genietim !

 

What got me was the absence of the actions{...} part in the GraphQL navigator.

Reply