Hi,
I have this working curl command that makes a downlink in TTN and would like to use the HTTP node to call it.
curl --location \
--header 'Authorization: Bearer [redacted]
--header 'Content-Type: application/json' \
--header 'User-Agent: my-integration/my-integration-version' \
--request POST \
--data '{
"downlinks": [{
"frm_payload": "MjAwMA==",
"f_port": 1
}]
}' \
'https://eu1.cloud.thethings.network/api/v3/as/applications/dessak/devices/eui-0sssss3c75d/down/replace'
However I can’t figure out where to put the data template:
[redacted]
Any ideas?
thanks