Solved: 502 Bad Gateway when making SQL request via HTTP

This is some new discovery to this post.

It turns out that having a Formula with “if” without a value in case of False:

if(true(),"when true")

causes this Issue.

You need:

if(true(),"when true", "when false")

Reply to mark as Solved.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.