List Inventory Journal Entries
GEThttps://secure.fleetio.com/api/v1/inventory_journal_entries
Returns a list of Inventory Journal Entries belonging to your account.
Request
Responses
- 200
- 401
- 500
OK
Response Headers
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
Possible values: >= 1
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
Possible values: >= 1
The ID of the User
associated with the entry.
The ID of the Part
associated with the entry.
part objectrequired
The ID of the details of this Part
at a specific Part Location
.
Not the same as part_location_id
.
part_location objectrequired
The previous quantity of the Part
before any adjustments.
The current quantity of the Part
after adjustments.
The quantity adjustment made to the Part
's count.
work_order objectnullablerequired
The ID of the Work Order Part Line Item
associated with the entry.
Only applicable if the entry is associated with a Work Order
.
The ID of the Inventory Adjustment Reason associated with the entry.
inventory_adjustment_reason objectnullablerequired
How many Comments
this entry has.
The type of adjustment that triggered the entry.
Possible values: [initial
, manual
, work_order
, purchase_order
, bulk_update
, transfer
]
The ID of the Part Location
that the Part
was transferred to.
Only applicable if the entry is associated with a transfer.
purchase_order objectnullablerequired
The ID of the ``Purchase Order Line Itemassociated with the entry. Only applicable if the entry is associated with a
Purchase Order`.
The ID of the Work Order
associated with the entry.
Only applicable if the entry is associated with a Work Order
.
The ID of the Vendor
associated with the entry.
Only applicable if the entry is associated with a Purchase Order
.
vendor objectnullablerequired
user objectrequired
[
{
"id": 0,
"created_at": "2023-03-14T13:46:27-06:00",
"updated_at": "2023-03-14T13:46:27-06:00",
"account_id": 0,
"user_id": 0,
"part_id": 0,
"part": {
"number": "string",
"id": 0
},
"part_location_detail_id": 0,
"part_location": {
"name": "string",
"id": 0
},
"previous_quantity": "string",
"current_quantity": "string",
"adjustment_quantity": "string",
"work_order": {
"number": "string",
"id": 0
},
"work_order_part_line_item_id": 0,
"inventory_adjustment_reason_id": 0,
"inventory_adjustment_reason": {
"name": "string"
},
"comments_count": 0,
"adjustment_type": "initial",
"transfer_part_location_id": 0,
"purchase_order": {
"number": "string",
"id": 0
},
"purchase_order_line_item_id": 0,
"work_order_id": 0,
"vendor_id": 0,
"vendor": {
"name": "string",
"id": 0
},
"user": {
"email": "string"
}
}
]
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"
}
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/v1/inventory_journal_entries' \
-H 'Accept: application/json' \
-H 'Authorization: Token <Authorization>' \
-H 'Account-Token: <Authorization>'