Write Batches

Synchronously writes batches of records to a Nominal data source.

If the request is too large, either due to the number of individual batches (> 10) or the number of points across batches (> 500k), the request may be split up into multiple requests internally when writing to the Nominal data source. Generally, it’s advisable to limit the number of points to 50k.

Headers

AuthorizationstringRequired

Bearer authentication of the form Bearer <token>, where token is your auth token.

Request

This endpoint expects an object.
batcheslist of objectsRequired
dataSourceRidstringRequired
Unique resource identifier for a NominalDataSource or Dataset. Though named similarly to a DataSourceRid, a NominalDataSourceRid specifically refers To a NominalDataSource, which is a nominal hosted database for streaming writes.
asynchronousInsertbooleanOptional
Defaults to true if not specified. If enabled, the server handles batching of requests. Request latency will be slower, but overall throughput will be faster if requests are sent in parallel.