Skip to content
English - United States
  • There are no suggestions because the search field is empty.

Sigfox using 'Advanced Data'

This article explains how to configure a Sigfox callback using the Advanced Data option so TagoIO receives additional uplink information (e.g., SNR, RSSI, STATION). It provides the exact callback settings, headers, and request format required.

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

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):

| header | value | | ------------- | ------------------------------------- | | device | {device} | | authorization | |

  • 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.