916e669fc527
Get a list of stock items
Retrieves a paged collection of stock items (required scope stock:read)
Query parameters
Represents the fields that can be used to sort stock items<p>Possible values:</p><ul><li><b>createdAt</b>: The date and time when the stock item was created</li></ul>
The field to sort items in the page by
Represents the direction in which sorting should be applied<p>Possible values:</p><ul><li><b>ascending</b>: Indicates ascending sorting order</li><li><b>descending</b>: Indicates descending sorting order</li></ul>
The direction to apply the sort
Only return stock items where id matches the value(s) provided (Max items: 50)
Only return stock items where stockDetailsId matches the value(s) provided (Max items: 50)
Only return stock items where 'serialNumber' matches the value provided
Only return stock items where 'locationContactId' matches the value provided
Only return stock items where 'locationVehicleId' matches the value provided
If true only returns stock items where 'soldAt' is not null, if false only returns stock items where 'soldAt' is null
The page number being requested (minimum: 1, maximum: 2147483)
The page size being requested (minimum: 1, maximum: 1000)
Headers
The customer identifier
Response
OK
Example response
{
"items": [
{
"id": 5514123,
"stockDetailsId": 5514123,
"quantity": 2.5,
"locationContactId": 5514123,
"locationVehicleId": 5514123,
"locationStockItemId": 5514123,
"soldAt": "2024-08-29T12:30:45.0000000+00:00",
"createdAt": "2022-11-29T16:50:16.0000000+00:00",
"notes": "Should be kept in warehouse",
"serialNumber": "AT-25805",
"altSerialNumber": "PA-09842",
"supplierSerialNumber": "TW-015",
"customerSerialNumber": "LM-214750",
"isEquipment": true,
"condition": "new",
"usage": 10,
"customFields": [
{
"definitionId": 5514123,
"value": "Purple",
"definition": {
"caption": "Favourite colour",
"type": "boolean",
"listOptions": [
"Red",
"Blue",
"Green",
"Purple"
],
"isRequired": true,
"isEditable": true,
"default": "10"
},
"systemListValueMetadata": {
"label": "John Doe",
"entityType": "resource"
}
}
]
}
],
"pageNumber": 2,
"pageSize": 100,
"pageItemCount": 55
}