Retrieve Inventory Sets
GEThttps://secure.fleetio.com/api/v3/part_location_details/:id/inventory_sets
This endpoint provides Part price breakdown for the requested quantity at the requested location based on the Advanced Inventory Valuation method. This endpoint should not be used if the account is using standard Static Pricing.
The adjustment_quantity
query param represents the quantity you would like
to use from a location. The returned array represents the various price
breakdown (Inventory Sets). The result is sorted based on the Advanced
Inventory Valuation method set for your account. For FIFO accounts,
the oldest Inventory Set will be the first item in the array. For LIFO
accounts, the newest Inventory Set will be the first item in the array.
Each item in the array will have the following properties:
unit_cost
leftover_quantity
added_at
The added_at
value represents the date at which the inventory was added to
the location.
If the very last element in the returned array has a leftover_quantity
value that is negative, then that means the requested quantity is not
available at the given location.
Request
Path Parameters
Possible values: Value must match regular expression ^[0-9]+$
The id of the relevant record
Query Parameters
Requested quantity from location
Responses
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
Possible values: >= 1
The Fleetio ID for the Part
associated with this Inventory Set.
Possible values: >= 1
The date and time at which this Inventory Set was added.
2023-03-14T13:46:27-06:00
The number of Parts
available for use in this Inventory Set.
The number of Parts
which have not been used in this Inventory Set.
The number of Parts
which were originally added to this Inventory Set.
The number of the Purchase Order
which was used to purchase this
Inventory Set.
The cost of each Part
in this Inventory Set in cents.
The number of Parts
which have been used in this Inventory Set.
The date and time at which this record was created.
2023-03-14T13:46:27-06:00
The date and time at which this record was most recently updated.
2023-03-14T13:46:27-06:00
[
{
"id": 0,
"part": {},
"part_id": 0,
"part_location_detail_id": 0,
"part_location_detail": {},
"added_at": "2023-03-14T13:46:27-06:00",
"available_quantity": 0,
"leftover_quantity": 0,
"original_quantity": 0,
"purchase_order_number": 0,
"unit_cost_cents": 0,
"used_quantity": 0,
"created_at": "2023-03-14T13:46:27-06:00",
"updated_at": "2023-03-14T13:46:27-06:00"
}
]
Request could not be authenticated
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Insufficient permission to perform this operation
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
The requested resource could not be located
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Something unexpected happened
- application/json
- Schema
- Example (auto)
Schema
Possible values: >= 400
and <= 599
A short, human-readable summary of the problem type. It SHOULD NOT change from occurrence to occurrence of the problem, except for purposes of localization.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"status": 0,
"title": "string",
"detail": "string",
"instance": "string"
}
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: Prefix the value with "Token", for example: "Token 76cbe06c49a64". You can generate a new API key [here](https://secure.fleetio.com/api_keys).
name: Account-Tokentype: apiKeyin: headerdescription: You can find your Account-Token [here](https://secure.fleetio.com/api_keys)
- curl
- ruby
- python
- csharp
- go
- java
- nodejs
- php
- CURL
curl -L 'https://secure.fleetio.com/api/v3/part_location_details/:id/inventory_sets' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>'