Skip to main content

Sigfox using 'Advanced Data'

The Advanced Data option allows you to receive additional information such as SNR, RSSI, STATION, and other metadata.

note

The type of information available will depend on your Data Plan contracted with Sigfox.

Create the callback on the Sigfox Backend Portal

  1. On the Sigfox Backend Portal, create a callback of type uplink.
  2. Click on the Device Type and select your device from the list.
  3. Click the Callback button, then click New and select the option Custom callback.

Configure the uplink callback with the following settings:

  • Type: SERVICE & ADVANCED_DATA
  • Channel: URL
  • URL: https://sigfox.middleware.tago.io/uplink
  • Use HTTP Method: POST
  • Send SNI: Check the box "Send SNI".
  • Headers: Add two rows in the Headers section (use the header and value fields):
headervalue
device{device}
authorization<authorization generated by TagoIO>
  • Content-type: application/json
  • Body: Copy and paste the JSON text below
[
{
"variable": "device",
"value": "{device}",
"serie": "{time}"
},
{
"variable": "data",
"value": "{data}",
"serie": "{time}"
},
{
"variable": "seqNumber",
"value": "{seqNumber}",
"serie": "{time}"
},
{
"variable": "location",
"location": {computedLocation},
"serie": "{time}"
}
]

Learn more about how to integrate with Sigfox.