Datasets
Loading a Datapoint
How to load a single data point from a collection
To load a single data point from a collection using its id, use the find method on a collection object.
Parameters
datapoint_id
str
The UUID
of the datapoint to load.
skip_data
bool
If True, the response only contain the Metadata fields without the actual
dataset specific fields. Defaults to False
.
Errors
NotFoundError
No such datapoint 0186e6b5-66cc-fcfd-91df-bbbff72499c3
If no data point with the given ID was found in the collection.
ValueError
Invalid datapoint id: <value> is not a valid UUID
If the given datapoint_id
is not a valid UUID.
Was this page helpful?