List all positions for a asset.
GET/v1/assets/:uuid/positions
List all positions for a asset.
Request
Path Parameters
Unique identifier for the asset
Query Parameters
Possible values: >= 1
and <= 100
Default value: 10
Number of items to return per page.
Possible values: >= 1
Default value: 1
Page number to return.
Filter positions captured after this date and time.
Filter positions captured before this date and time.
Responses
- 200
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
A URL to the JSON Schema for this object.
data
object[]
required
Accuracy of the position
Altitude of the position
Unique identifier for the asset
Date and time the asset was captured.
Date and time the asset was created.
Date and time the asset was deleted.
Possible values: >= 16 characters
and <= 16 characters
Unique identifier for the device
Latitude of the position
Longitude of the position
Is the asset moving
Date and time the asset was captured.
Possible values: [gnss
, wifi
, ble
, lora
]
Source of the position
Date and time the asset was updated.
metadata
object
required
{
"$schema": "string",
"data": [
{
"altitude": 0,
"asset": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"capturedAt": "2024-06-25T14:10:22.440Z",
"createdAt": "2024-06-25T14:10:22.440Z",
"device": "string",
"latitude": 0,
"longitude": 0,
"moving": true,
"receivedAt": "2024-06-25T14:10:22.440Z",
"source": "gnss"
}
],
"metadata": {
"limit": 0,
"page": 0,
"total": 0,
"totalPages": 0
},
"status": 0,
"timestamp": "2024-06-25T14:10:22.440Z"
}
Error
- application/problem+json
- Schema
- Example (from schema)
Schema
Array [
]
A URL to the JSON Schema for this object.
A human-readable explanation specific to this occurrence of the problem.
errors
object[]
Optional list of individual error details
Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id'
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
HTTP status code
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
Default value: about:blank
A URI reference to human-readable documentation for the error.
{
"$schema": "string",
"detail": "string",
"errors": [
{
"location": "string",
"message": "string"
}
],
"instance": "string",
"status": 0,
"title": "string",
"type": "about:blank"
}