Soracom Harvest Data
Harvest Data Options
Harvest Data provides two options:
- Batch Write : Send multiple data points with a single command from a device.
- Overwrite Timestamp with Payload Data : Set an arbitrary timestamp for data sent from the device.
Batch Write is always enabled alongside Overwrite Timestamp with Payload Data.
On the other hand, Overwrite Timestamp with Payload Data can be used on its own.
Batch Write
Send multiple data points to Harvest Data in a single command by enabling Batch Write. This approach can help reduce power consumption on the cellular module and extend the device's battery life.
How to Enable Batch Write
- Login to the User Console. From the Menu, expand Soracom Air for Cellular and select Groups.
-
Select a group.
See Managing Groups for further information on creating and managing groups.
- Expand Soracom Harvest Data and toggle the switch to on.
-
Toggle Batch write to on.
This will automatically enable Overwrite timestamp with payload data.
JSON Pointer to Data Array: Specify the JSON Pointer that identifies the data array in the payload (e.g.,
/data
). -
Click Save.
A confirmation dialog will be displayed:
JSON Pointer to Data Array
JSON Pointer is a standardized syntax for identifying a specific value within a JSON document (RFC 6901).
For example, set the JSON Pointer to /data
if your device sends data in the following format:
{
"data": [
{"time": "2025-03-17T00:00:00Z", "temperature": 15.5},
{"time": "2025-03-18T00:00:00Z", "temperature": 15.4}
]
}
All data in the array must include a timestamp value that can be parsed by enabling Batch Write and Overwrite Timestamp with Payload Data.
When you want to send the entire data array without any modifications, enable Batch Write and leave the JSON Pointer to data array field blank to reference the entire JSON object.
Limitations
- Multiple write requests will be made according to the number of data items included in the array, and these requests may incur data fees. Please refer to the Pricing & Fee Schedule for more details.
- Up to 100 different data points can be sent within one single data transmission.
- The Batch Write feature is always used together with Overwrite Timestamp with Payload Data.
- The value in the
x-soracom-timestamp
header will be ignored when Batch Write is enabled.x-soracom-timestamp
is a custom HTTP header used to set an arbitrary time as the data timestamp. See the Examples for more details. - Do not include duplicate timestamps in a single data array. If duplicate timestamps are present, only one will be saved while other duplicates will be ignored, returning the response status code
207 Multi-Status
.
Overwrite Timestamp with Payload Data
Normally, the timestamp of data in Harvest Data is the time when the data is saved in Harvest Data. This default behavior can be overridden by using the timestamp included in the transmitted payload data.
- Overwrite Timestamp with Payload Data: Enable this option to use the timestamp from the payload data instead of the default timestamp.
- Payload Format: Specify the format of your data. Currently, only JSON is supported for timestamp overwriting.
- JSON Pointer to Timestamp: Provide the JSON Pointer that identifies the timestamp in the payload (e.g.,
/time
). - Format: Choose the format of your timestamps from Date/Time (ISO-8601), Unix Time (seconds), or Unix Time (milliseconds).
JSON Pointer to Timestamp
JSON Pointer is a standardized syntax for identifying a specific value within a JSON document (RFC 6901).
For example, set JSON pointer as /time
if the device sends data as shown below.
{
"temperature": 12.3,
"humidity": 45.6,
"time": "2025-03-24T12:34:56.789Z"
}
When used together with Batch Write, the JSON Pointer should be relative to each data item, not to the root of the JSON document. For example, set JSON Pointer as /time
if the device sends data as shown below. JSON Pointers such as /data/0/time
and /data/1/time
are not valid.
{
"data": [
{"time": "2025-03-17T00:00:00Z", "temperature": 15.5},
{"time": "2025-03-18T00:00:00Z", "temperature": 15.4}
]
}
Date and time cannot be used as a timestamp if the values are split into multiple properties such as illustrated in the example below.
[
{
"temperature": 12.3,
"humidity": 45.6,
"date": "2025-03-20",
"time": "12:34:56.789"
}
]
Format
There are three formats available to parse the time values in the JSON document.
- ISO 8601 - Choose this when the device sends following
String
values as a timestamp:"time": "2025-03-24T12:34:56.789Z"
"time": "2025-03-24T12:34:56Z"
*1"time": "2025-03-24T12:34:56.789-08:00"
"time": "2025-03-24T12:34:56-08:00"
*1
- Unix Time (seconds) - Choose this when the device sends the following
String
orNumber
values as a timestamp:"time": "1742787296"
*1"time": 1742787296
*1
- Unix Time (milliseconds) - Choose this when the device sends the following
String
orNumber
values as a timestamp:"time": "1742787296789"
"time": 1742787296789
*1 When the milliseconds are not provided, Harvest Data automatically adds .000
milliseconds.
When ISO-8601 is set, the timezone identifier such as Z
for UTC+00:00 and -08:00
for non-UTC timezones is necessary.
Strings without the timezone identifier like 2025-03-24T12:34:56
are not valid and fail to save returning an error.
Limitations
- If data is sent with the same timestamp as existing data for the same resource ID, the previously sent data will be overwritten by the data sent last.
- If the data format is JSON, individual properties within the JSON document are overwritten separately. In other words, any previously stored properties remain unless they are overwritten by a property with the same name.
Example | Data Sent First | Data Sent Later | Stored Data |
---|---|---|---|
1 | {"temperature": 20} |
{"humidity": 30} |
{"temperature": 20, "humidity": 30} (humidity is added) |
2 | {"temperature": 25, "humidity": 30} |
{"temperature": 28} |
{"temperature": 28, "humidity": 30} (temperature is overwritten, humidity remains the same) |
- Failure to parse the timestamp—for example, to a missing timezone identifier in an ISO-8601 timestamp string or sending a correct Unix Time value while configured to use ISO-8601—will result in the data not being saved.
- Data that is too old or too far in the future cannot be saved. Specifically, any data older than 40 days (3,456,000 seconds) before the time Harvest Data processes it, or more than 1 day (86,400 seconds) into the future, will not be saved.
- The value in the
x-soracom-timestamp
header will be used as its timestamp when bothx-soracom-timestamp
and overwrite timestamp are set.x-soracom-timestamp
is a custom HTTP header to set an arbitrary time as the data timestamp. See the Examples for more details. - The
x-soracom-timestamp
header will be ignored if Batch Write is enabled.
Send Data to Harvest Data
Devices using IoT SIMs that are assigned to the group where these settings are configured send their data to Harvest Data.
The example below illustrates group settings and explains the response returned when sending data to Harvest Data using Unified Endpoint as the endpoint.
-
Enable Batch Write.
Overwrite Timestamp with Payload Data is automatically enabled when Batch Write is enabled.
-
Configure the following for Batch Write:
- JSON Pointer to data array: Enter
/data
.
- JSON Pointer to data array: Enter
-
Configure the following for Overwrite timestamp with payload data:
- Payload format: Select JSON.
- JSON Pointer to timestamp: Enter
/time
. - Format: Select Date/Time (ISO-8601).
-
Click Save.
-
Send data from the device to the Unified Endpoint.
curl -v http://uni.soracom.io \ -H 'content-type: application/json' \ -d '{ "data": [ {"time": "2025-03-17T09:00:00+09:00Z", "temperature": 20.5}, {"time": "2025-03-18T09:00:00+09:00Z", "temperature": 20.4} ] }'
* Host uni.soracom.io:80 was resolved. * IPv6: (none) * IPv4: 100.127.69.42 * Trying 100.127.69.42:80... * Connected to uni.soracom.io (100.127.69.42) port 80 > POST / HTTP/1.1 > Host: uni.soracom.io > User-Agent: curl/8.5.0 > Accept: */* > content-type: application/json > Content-Length: 147 > < HTTP/1.1 201 Created < Date: Fri, 28 Mar 2025 08:55:22 GMT < Content-Length: 51 < Connection: keep-alive < Keep-Alive: timeout=65 < * Connection #0 to host uni.soracom.io left intact {"total":2,"status":{"successCount":2,"errors":[]}}
The data is saved in Harvest Data and the processing result is returned in the response. The meaning of each property in the response is as follows:
Properties | Details |
---|---|
total | The number of data entries recognized by Harvest Data. |
status.successCount | The number of data entries saved to Harvest Data. |
status.errors[].index | The number of data entries that could not be saved to Harvest Data. |
status.errors[].code | Error code. |
status.errors[].message | Error message. |