API Header Key Values?

I think I’m being stupid here but how do I get a header key value for an api request made to my web app?

I can see the Json sent in the body under $_PARAM but there is a header key value I need that they send in the request.

Try $_HEADER.

1 Like

The >> Input doesn’t have a $_HEADER @sid

The inputs are just visual helpers.
Only function they perform is server side validation and form linked validation on client side.
If you don’t define input variables, you can still just type them out in steps below.

Headers are also available in $_SERVER object.
Use a set value step and set the value {{$_SERVER}} and see the output… What the name of your header is.
Then you can use it anywhere by typing $_SERVER.xxxz anywhere in steps.
Same for $_HEADER.

4 Likes