Package Items
Operations related to package items
Returns a paginated list of package items with detailed information including order item details, transfer orders, denial reasons, and discrepancy information.
Supports comprehensive filtering by package, dates, and ordering options.
Use format: Token <your_token>
Page number for pagination
1Number of items per page
20Ordering field
Filter by package ID
Filter by package number
Filter by state ID
Filter by state enum value
Successful response with package items
Bad request - invalid filter parameters
Authentication credentials were not provided
You do not have permission to perform this action
GET /api/v1/oms/packages/package-items/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"package": {},
"order_item": {},
"state": {},
"quantity": 1,
"unit_weight": 1,
"created_date": "2025-12-01T15:11:05.058Z",
"modified_date": "2025-12-01T15:11:05.058Z"
}
]
}Retrieves a single package item by its ID with all details.
Use format: Token <your_token>
The unique identifier of the package item
Successful response with package item details
Authentication credentials were not provided
You do not have permission to perform this action
Package item not found
GET /api/v1/oms/packages/package-items/{id}/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
{
"id": 1,
"package": {},
"order_item": {},
"state": {},
"quantity": 1,
"unit_weight": 1,
"created_date": "2025-12-01T15:11:05.058Z",
"modified_date": "2025-12-01T15:11:05.058Z"
}Last updated
Was this helpful?

