Batch Write Support Added to Soracom Harvest Data
Batch Write
We are introducing a new Batch Write feature for Soracom Harvest Data (hereafter referred to as "Harvest Data").
This feature allows multiple write requests to Harvest Data to be processed in a single operation. By consolidating multiple data transmissions into one, this feature helps reduce device battery consumption and data transmission costs.
How to Use
To use the Batch Write feature, include a JSON array in the JSON data sent from the device. For example, in the following example, the JSON array is stored under /data
:
{ "data": [ { "value": 123, "time": "2025-03-26T12:34:56Z" }, { "value": 456, "time": "2025-03-27T12:34:56Z" }, { "value": 789, "time": "2025-03-28T12:34:56Z" } ] }
Batch Write must be used in combination with the Timestamp Overwrite feature. Each data entry in the array must contain a timestamp that is compatible with this feature. For example, in the JSON above, the timestamps are in ISO 8601 format, making them valid.
Additional Information
For more details, refer to the Batch Write documentation page.