Configuring HTTP Request for API call

Your flow is corrupt due to not posting code in the correct way

In order to make code readable and usable it is necessary to surround your code with three backticks (also known as a left quote or backquote ```)

``` 
   code goes here 
```

You can edit and correct your post by clicking the pencil :pencil2: icon.

See this post for more details - How to share code or flow json

What is the response you get from the http resquest node?
Did you try what I said?

[edit]
The browser is a GET request but you set the http request to POST.
To append the query string mag.payload needs to be a object.
You do not require the JSON node, unless you want a JSON(string) returned rather than a Javascript object.

example flow

[{"id":"076b0c640872f1aa","type":"inject","z":"d1395164b4eec73e","name":"On","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"Switch","payload":"{\"oid\":\"b05dd514\",\"prop\":\"command\",\"value\":\"off\"}","payloadType":"json","x":450,"y":5800,"wires":[["06748d9fc38754f0"]]},{"id":"06748d9fc38754f0","type":"http request","z":"d1395164b4eec73e","name":"Switch Extra","method":"GET","ret":"obj","paytoqs":"query","url":"http://192.168.1.118/iungo/api_request/object_prop_set","tls":"","persist":false,"proxy":"","insecureHTTPParser":true,"authType":"","senderr":false,"headers":[],"x":630,"y":5800,"wires":[["a69505ee9895d0ec","9ed11ab460e04bc0"]]},{"id":"a69505ee9895d0ec","type":"debug","z":"d1395164b4eec73e","name":"debug 8","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":880,"y":5720,"wires":[]},{"id":"9ed11ab460e04bc0","type":"debug","z":"d1395164b4eec73e","name":"debug 1","active":true,"tosidebar":false,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":1000,"y":5800,"wires":[]}]

What you call headers are properties of the query string. headers are a completely different thing.