Ubidots
Integrate IoT data with Ubidots
Ubidots is an IoT platform, allowing IoT developers to rapidly assemble and launch applications without having to write complicated code. It supports multiple protocols to integrate data, including UDP, TCP, HTTP(S) and MQTT.
Quick Navigation
Prerequisites
Monogoto SIM
Access to an IoT modem
Account on Ubidots
Set up your Ubidots account
You can get started with Ubidots free of charge by signing up for a account.
In order to send data to Ubidots, you need the following parameters to create the data string:
Ubidots Token starting with
BBFFe.g.BBFF-ABCDEFGHIJKLMNOPQRSTUVWXYZ0123You can find your token when selecting your profile in the top-right corner and select API Credentials.

User agent You can think of name that will help you identify the IoT application you are working on, e.g.
iotfleet1Device Label e.g.
iot-sensorThe device label is the name of your device as registered in Ubidots. Visit your Devices page in the Ubidots console, and select the + sign at the top right corner to add a new device and provide its name.

Send data using UDP
In order to send data using UDP, 4 AT Commands needs to be sent:
Create UDP socket
Activate socket
Send UDP data
Close UDP Socket
The example below is created for the Murata Type 1SC module. When using a different IoT modem, have a look at the AT Commands manual of your modem vendor as the commands might slightly differ.
1. Create UDP socket
AT%SOCKETCMD="ALLOCATE",1,"UDP","OPEN","3.19.87.203",9012 Example response: %SOCKETCMD:1
2. Activate Socket
AT%SOCKETCMD="ACTIVATE",1Example response: %SOCKETCMD:1
3. Send UDP data
In order to send data to Ubidots, you need the following parameters to create the data string:
User agent, e.g.
iotfleet1Ubidots Token e.g.
BBFF-ABCDEFGHIJKLMNOPQRSTUVWXYZ0123Device Label e.g.
iotsensorVariable Label e.g.
temperatureValue e.g.
21
To send data to Ubidots, a data string needs to be created with all the parameters mentioned above:
USER_AGENT|POST|TOKEN|DEV_LABEL=>[VAR_LABEL:VALUE|end
For example:
iotfleet1|POST|BBFF-ABCDEFGHIJKLMNOPQRSTUVWXYZ0123|iotsensor=>temperature:21|endIt' s not possible to send text to the module, instead we need to send hexadecimal values. Convert this text string to hexadecimal numbers using a program like rapidtables.
The same data, but converted to hexademical number:
696F74666C656574317C504F53547C424246462D4142434445464748494A4B4C4D4E4F505152535455565758595A303132337C696F7473656E736F723D3E74656D70657261747572653A32317C656E64AT Command
AT%SOCKETDATA="SEND",1,<length>,"<data>"length need to be replaced with the amount of bytes you're sending, data is replaced by the actual message.
Make sure to exactly count the number of characters you send, or you will receive an error.
Example AT Command:
AT%SOCKETDATA="SEND",1,80,"696F74666C656574317C504F53547C424246462D4142434445464748494A4B4C4D4E4F505152535455565758595A303132337C696F7473656E736F723D3E74656D70657261747572653A32317C656E64"Expected response: +SOCKETDATA: 1,80
4. Close UDP socket
End your UDP session by closing the UDP socket.
AT%SOCKETCMD="DELETE",1Expected response: OK
If all went well, the Ubidots platform will visualize and store your data:

Send data using HTTP
The example below is created for the u-blox SARA R412 modem. When using a different IoT modem, have a look at the AT Commands manual of your modem vendor as the commands might slightly differ.
In order to send data using HTTP, 4 AT Commands needs to be sent:
Set the HTTP base url
AT+UHTTPSet custom headers
AT+UHTTPCreate a JSON file containing the data you want to send
AT+UDWNFILESend data
AT+UHTTPC
1. Set the HTTP base url
AT Command:
AT+UHTTP=<profile_id>,1,"<param_val>"Replace
<profile_id>with an identifier, e.g.0Replace
<param_val>with Ubidots' IP address or domain name:industrial.api.ubidots.com
The AT Command becomes:
AT+UHTTP=0,1,"industrial.api.ubidots.com"To test if the base url was set correctly, enter: AT+UHTTP=0,1. Expected response:
+UHTTP: 0,1,"industrial.api.ubidots.com"
OK2. Set custom headers
AT Command:
AT+UHTTP=<profile_id>,0,"<param_val>"Replace
<profile_id>with the same identifier you used before, e.g.0Replace
<param_val>with a counter, going up for each new header you set, followed by the custom header, e.g."0:X-Auth-Token:BBFF-ABCDEFGHIJKLMNOPQRSTUVWXYZ0123"
Set the first header, containing the Ubidots authentication token:
AT+UHTTP=0,9,"0:X-Auth-Token:BBFF-ABCDEFGHIJKLMNOPQRSTUVWXYZ0123"The second header, contains the content type JSON:
AT+UHTTP=0,9,"1:Content-Type:application/json"3. Create a JSON file containing the data you want to send
AT Command:
AT+UDWNFILE="<file_name>",<size>Replace
<file_name>with any name, e.g.sensordata.jsonReplace
<size>with the exact number of characters in the file.
To create a new file with 49 characters, called sensordata.json and add the sensordata, for example: {"temperature": 19,"humidity": 90,"pressure": 78}
AT+UDWNFILE="sensordata.json",49
> {"temperature": 19,"humidity": 90,"pressure": 78}Read the contents of the file you just created:
AT+URDFILE="sensordata.json"4. Send data
AT Command:
AT+UHTTPC=<profile_id>,4,"<url path>","<responseFilename>","<filesystemName>",4Replace
<profile_id>with the same identifier you used before, e.g.0Replace
<url path>starting with/, e.g./api/v1.6/devices/{Device Label}Replace
<responseFilename>with any name to store the server response, e.g.data.txtReplace
<filesystemName>with the file containing the data you want to send, e.g.sensordata.json
For example:
AT+UHTTPC=0,4,"/api/v1.6/devices/iotsensor","data.txt","sensordata.json",4Expected response: +UUHTTPCR: 0,4,1
If the message was sent correctly, the Ubidots platform will visualize and store your data.

Optionally, delete the created file so you can recreate it when collecting new sensordata:
AT+UDELFILE="sensordata.json"Useful links
Last updated
Was this helpful?