HTTP Integration - URL Manipulation

Hello,

  1. Is it possible to send GET commands instead of POST?
  2. Is it possible to manipulate on the HTTP integration? For example, currently I have configured on my HTTP integration to send data to my local device, the received command is

POST /test HTTP/1.1
Host: 192.168.9.159:10010
User-Agent: Go-http-client/1.1
Content-Length: 549
Content-Type: application/json
Accept-Encoding: gzip

{“applicationID”:“4”,“applicationName”:“emergency-button-application”,“deviceName”:“emergency-button-device”,“devEUI”:“0044770124008988”,“rxInfo”:[{“mac”:“c0ee4033ff293c23”,“rssi”:-73,“loRaSNR”:7.5,“name”:“c0ee4033ff293c23”,“latitude”:0,“longitude”:0,“altitude”:0}],“txInfo”:{“frequency”:868300000,“dataRate”:{“modulation”:“LORA”,“bandwidth”:125,“spreadFactor”:7},“adr”:true,“codeRate”:“4/5”},“fCnt”:106,“fPort”:2,“data”:“AQUA”,“object”:{“Other info”:0,“alarmStatus”:“Panic Button Pressed”,“bytelength”:3,“myValue”:"\u0001\u0005\u0000",“version”:1}}

============================================

Instead of this, I want to be able to send only a simple GET command that sends like

https://192.168.9.159:10010/api/hashkey/?status=panic_button_pressed

Is this possible ?

Regards
Sam

No, that is not possible.

Thank you @brocaar for the prompt reply, as always :slight_smile: