4.1.2.2 Reading a Single Row of Data From a Dataset
The following request reads a single row of data from a dataset.
HTTP GET Request
curl -k "https://localhost:4040/spatialstudio/oauth/v1/datasets/rows/5c3b3a6d98eab545a0f9bd66e3d07886?limit=1" \
--header "Authorization: Bearer <MY_TOKEN>"
The following response returns a single row of data for the specified dataset (with the given id).
Response
{
...
"items" : [
{
"LAT" : 35.53222623,
"LON" : -101.5576172,
"NAME" : "Amarillo Warehouse”
}
],
...
}
Parent topic: Example Workflow With the Spatial Studio REST Endpoints