Retrieve Inventory Journal Entry
Retrieve the details of an existing Journal Entry.
Path Parameters
- id string required
Possible values: Value must match regular expression
^[0-9]+$
The id of the relevant record
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
- id integer
Possible values:
>= 1
- created_at date-time
The date and time at which this record was created.
- updated_at date-time
The date and time at which this record was most recently updated.
- account_id integer
Possible values:
>= 1
- user_id integer
The ID of the
User
associated with the entry. - part_id integer
The ID of the
Part
associated with the entry. part object
The
Part
number (unique) and ID of thePart
associated with the entry.number stringid integerPossible values:
>= 1
- part_location_detail_id integer
The ID of the details of this
Part
at a specificPart Location
. Not the same aspart_location_id
. part_location object
Information about the associated
Part Location
.name stringid integerPossible values:
>= 1
- previous_quantity string
The previous quantity of the
Part
before any adjustments. - current_quantity string
The current quantity of the
Part
after adjustments. - adjustment_quantity string
The quantity adjustment made to the
Part
's count. work_order object
Information about the associated
Work Order
, if applicable.number stringid integerPossible values:
>= 1
- work_order_part_line_item_id integer
The ID of the
Work Order Part Line Item
associated with the entry. Only applicable if the entry is associated with aWork Order
. - inventory_adjustment_reason_id integer
The ID of the Inventory Adjustment Reason associated with the entry.
inventory_adjustment_reason object
name stringThe
Inventory Adjustment Reason
name associated with the entry.- comments_count integer
How many
Comments
this entry has. - adjustment_type string
Possible values: [
initial
,manual
,work_order
,purchase_order
,bulk_update
,transfer
]The type of adjustment that triggered the entry.
- transfer_part_location_id integer
The ID of the
Part Location
that thePart
was transferred to. Only applicable if the entry is associated with a transfer. purchase_order object
Information about the associated
Purchase Order
, if applicable.number stringid integerPossible values:
>= 1
- purchase_order_line_item_id integer
The ID of the ``Purchase Order Line Item
associated with the entry. Only applicable if the entry is associated with a
Purchase Order`. - work_order_id integer
The ID of the
Work Order
associated with the entry. Only applicable if the entry is associated with aWork Order
. - vendor_id integer
The ID of the
Vendor
associated with the entry. Only applicable if the entry is associated with aPurchase Order
. vendor object
Information about the associated
Vendor
, if applicable.name stringid integerPossible values:
>= 1
user object
Information about the
User
that created the entry.email string
{
"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 (from schema)
Schema
- status integer
Possible values:
>= 400
and<= 599
- title string
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.
- detail string
A human-readable explanation specific to this occurrence of the problem.
- instance string
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 (from schema)
Schema
- status integer
Possible values:
>= 400
and<= 599
- title string
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.
- detail string
A human-readable explanation specific to this occurrence of the problem.
- instance string
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 (from schema)
Schema
- status integer
Possible values:
>= 400
and<= 599
- title string
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.
- detail string
A human-readable explanation specific to this occurrence of the problem.
- instance string
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 (from schema)
Schema
- status integer
Possible values:
>= 400
and<= 599
- title string
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.
- detail string
A human-readable explanation specific to this occurrence of the problem.
- instance string
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"
}