Creating a Network integration

Creating a Network integration

To create a new integration you must go to the Network management page and press the following buttonon the right side of the page. You only need to specify the network's name.

Once you have the network created, you have several parameters that you can use. If you want to keep the network private for your account only, you don't need to fill all of them.
  • Name: Network name.
  • Description: Network description.
  • Documentation Link: external link for documentation on how to use it. Preferably on TagoIO's community page.
  • Icon: Icon of the network, to show up in the sidebar.
  • Banner: Banner of the network, to show up when the network is selected.
After you create a network, it will only be visible to you by default. However, you have the option to share it with other Profiles from different accounts. Read more about Sharing Connectors & Networks.

You can request to have your network listed on our Connector Selection page within the Admin. This will allow others to discover and use your network. To make this request, please contact us through the Help Center.


Serial Number

You can turn the serial number to required or not. If not required, the user will not be requested to enter a serial number. Usually you will want this to be on.

The serial number allows you to get the device using your network token. Then you can insert data to the device.

  • Label: serial number label, like Device EUI, Serial, IMEI, etc.
  • Format: Unique format of the serial number. It restricts the length of the serial number and the values allowed.

    A few keywords are allowed:
    F: Hexadecimal value.
    A: Alphabet value.
    0: Number value.
    -: Hifen is just for user visualization, this value is not stored in the serial number.

    So, for example, if I want the serial number to be a sixteen length hexadecimal value, as it is used in Device EUI, I can write this way:
    FF-FF-FF-FF-FF-FF-FF-FF
  • Image: Image example to help the user find the serial number.
  • Force Case: To force the serial number to be Lowercase or Uppercase.


Device Parameters

Device parameters are useful ways to set some parameters to connectors created using your Network.

You can set it as a Number, Text, Dropdown or Switch, which you can access later in the payload parser.

Here is an example with dropdown on how it looks in the user view:

Check the Payload parser context overview to see how to get this information on the payload parser.



Tokens and getting the devices

Here you can generate tokens for your network. You will need the token to get access to devices created in your network. The token will have no use if you're not using Serial Number, as the serial number is required to use this functionality.

HTTPs GET: 
       https://api.tago.io/integration/network/resolve/{serial_number}/{authorization}
Headers:
        - Authorization: Network-token
  • Serial number: The serial number used in the device creation.
  • Authorization (Optional): The user account Authorization, required to have access to any device in the user's account. We strongly recommend use it for security purposes.
Response HTTPs Header 200:
{
 "status": true,
 "result": "01369696-xxxx-xxxx-xxxx-feb5ddca1751"
}

The result of the request is the device token, which you can use to send the data with the HTTP's data post.

If you will be sending raw payload data, please follow the instructions bellow in order to keep it compatible with all TagoIO connectors.

  • Send the variable as payload.
  • Always send the value as hexadecimal.

Example:

{
 "variable": "payload",
 "value": "01000A0"
}


Payload Parser

The payload parser for the Network doesn't work any differently from the payload parser for devices. All of the same rules are applied here.

If you're sending data to TagoIO in the correct format, there is not much to do here. But if you're sending a text file, or an unsupported JSON format, it is best to handle this here before going to the device connector.

Some integrations do not send the payload in hexadecimal, and in the payload parser you can easily change it to hex in order to keep the compatibility with all other connectors.



Creating a connector

Now all you need to do to start using your network is to create a connector.

The network is the way the device will be connecting to TagoIO, the connector is what the device is.

After creating your connector, you will be able to start creating devices with the connector and network you've made.


    • Related Articles

    • Network Integration

      Your devices can always connect directly with TagoIO API using HTTPS or MQTT protocol. But, you can also connect them using different protocols to databases and web services by using one of this methods: Create a script that initiate access to ...
    • Senet Network

      Using this article, the user will learn how to integrate a LoRaWan device with Senet Network and TagoIO. This setup is for the uplink operation: data sent from the device to your TagoIO account. The integration is accomplished in two parts: 1) TagoIO ...
    • SenRa Network

      Using this article, the user will learn how to integrate a LoRaWan device with SenRa Network and Tago.   This setup is for the uplink operation: data sent from the device to your TagoIO account.  The integration is accomplished in two parts: 1) ...
    • Creating Analysis

      Creating your own analysis is easy. First, click on Analysis on the sidebar, then click the + Add Analysis button in the upper right of the analysis main screen. Just write a name and you’re ready to go! 1. Name What you usually use to identify your ...
    • The Things Network LoRaWAN™

      In this article, you will be instructed on how to integrate TTN LoRaWANTM devices with TagoIO; you will be able to send data from your devices (uplink) to TagoIO and back to them (downlink). If you're trying to integrate TTN v3, use our TTI ...