datasets
Client.Datapoints.Ingest
Ingest data points into a collection.
Parameters
The id of the collection
The datapoints to ingest
Datapoint fields are used to generate a deterministic unique UUID
for each
datapoint in a collection. Duplicate data points result in the same ID being generated.
If allowExisting
is true
, ingest
will skip those datapoints, since they already exist.
If allowExisting
is false
, ingest
will raise an error if any of the generated datapoint IDs already exist.
Returns
The list of datapoint ids that were ingested, including the IDs of existing data points in case of duplicates and
allowExisting=true
.
Errors
If allowExisting
is False
and any of the datapoints attempting to ingest already exist.