Get Items
GET/items
Get all items from the database that match the query.
Parameters
group_by: string (optional)
Field to group items by. If not provided, items will not be grouped.
skip: integer (optional)
Number of items to skip in the result. Must be greater or equal to 0.
limit: integer (optional)
Maximum number of items to return. Must be greater or equal to 0.
start_date: datetime (optional)
Include items created after this date.
end_date: datetime (optional)
Include items created before this date.
Returns
list of Item
A list of items matching the query.
Request
Query Parameters
Field to group by
Number of items to skip
Maximum number of items to return
Include items created after this date
Include items created before this date
Responses
- 200
- 404
- 422
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- Array [
- ]
- ]
- Array [
- DimensioningMode
- MOD2
- Array [
- Array [
- ]
- ]
- ]
- Array [
- Array [
- ]
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
- ]
The time the item was created
The ID of the user the object belongs to
The unique identifier for the object
The ID of the account that scanned the item
Time at which user started flow.
Time at which user finished entire flow.
The ID of the flow used during the scanning session
photographing object[]
The list of photographing steps
The ID of the flow step
The time at which the photographing step started
The time at which the photographing step ended
photos object[]
The list of photos that were taken during the photographing step
The date and time the photo was taken
The url of the photo
dimensioning object[]
The list of dimensioning steps
The ID of the flow step
Time at which user started dimensioning step
Time at which user finished dimensioning step
mode object
The mode of dimensioning
string
string
dimensions object
Time at which user first saw predicted dimensions
Time at which user confirmed the final dimensions.
The final width of the item
The final height of the item
The final depth of the item
Possible values: [m
, mm
, cm
, ft
, in
]
The unit of the dimensions
allowed_rotations object
The unique identifier for the object
Time at which user started filling in allowed rotations
Time at which user finished filling in allowed rotations
Whether the item can be placed down with its width and depth facing the floor
Whether the item can be placed down with its width and height facing the floor
Whether the item can be placed down with its depth and height facing the floor
screenshot object
The url of the screenshot of the item with the bounding box
The date and time the screenshot was taken
Whether the bounding box was manually edited
The final bounding box dimensions
recordings object[]
The list of dimension recordings
screenshot object
The url of the screenshot of the item with the bounding box
The date and time the screenshot was taken
The dimensions of the bounding box as measured at this specific step in the dimensioning process in meters
frames object[]
The list of frames taken during the recording
rgb object
The date and time the photo was taken
The url of the photo
weighing object[]
The list of weighing steps
The ID of the flow step
The time at which the weighing step started
The time at which the weighing step ended
The weight of the item
An enumeration.
photos object[]
The photos of the weight scale's display
The date and time the photo was taken
The url of the photo
barcode_scanning object[]
The list of barcode scanning steps
The ID of the flow step
Time at which user started barcode collection
Time at which user finished barcode collection
The scanned barcode
single_choices object[]
The list of single choice steps
The ID of the flow step
The time at which the single choice step started
The time at which the single choice step ended
The choice that has to be made
The selected choice
multi_choices object[]
The list of multi choice steps
The ID of the flow step
The question
The selected choices
custom_inputs object[]
The list of custom input steps
The ID of the flow step
The question
The date and time the custom input module was started
The date and time the custom input module was ended
The value of the custom input (if it is a number input)
The value of the custom input (if it is a string input)
[
{
"startedAt": "2024-12-06T08:36:30.192143",
"endedAt": "2024-12-06T08:37:30.192157",
"photographing": [],
"dimensioning": [],
"weighing": [],
"barcodeScanning": []
}
]
Not Found
- application/json
- Schema
- Example (from schema)
Schema
{
"message": "string",
"status_code": 0
}
Validation Error
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- MOD2
- ]
- ]
detail object[]
loc object[]required
string
integer
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}