API - Ignore Security Filter?

How would I instruct an incoming API to ignore the security filters?

@Martin_Pace

0 5 202
5 REPLIES 5

@Grant_Stead
You mean AppSheet API call or a third party REST API call?

I belive below expression might do the trick @Grant_Stead. Try it in your Security Filter

IFS(
    CONTEXT("Device") = "Server", TRUE,
    TRUE,
    //Your security filter expression goes here
)

It’s incoming from a Google Cloud Function…

Great minds…
That’s what I’m trying right now.
IF(
CONTEXT(“Host”)=“Server”, TRUE,
security expressions
)

Curious why you went with an IFS?

I got used to that IFS…Addicted I believe

FYI it appears that sync and security expresions are always handled by the server, so far as the context expression is concerned. So that didn’t work. I made up a fake API USEREMAIL… Put that in run as user, and put it in the security filter…
@Phil is there a better method for dealing with security filters during API injections?

Top Labels in this Space