Transfer Items
Operations related to transfer items
Returns a paginated list of transfer items with filtering options.
Use format: Token <your_token>
Response format
jsonPossible values: Page number
1Number of items per page
20Sorting field
Filter by transfer order ID
Filter by product ID
Filter by exact quantity
Filter quantities greater than this value
Filter quantities greater than or equal to this value
Filter quantities less than this value
Filter quantities less than or equal to this value
Successful operation
GET /api/v1/oms/transfer-items/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"transfer_order": {},
"product": {},
"quantity": 1,
"state": {},
"created_date": "2025-12-01T15:07:49.449Z",
"modified_date": "2025-12-01T15:07:49.449Z"
}
]
}Retrieve a specific transfer item by its ID
Use format: Token <your_token>
Transfer item details
GET /api/v1/oms/transfer-items/{id}/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Transfer item details
{
"id": 1,
"transfer_order": {},
"product": {},
"quantity": 1,
"state": {},
"created_date": "2025-12-01T15:07:49.449Z",
"modified_date": "2025-12-01T15:07:49.449Z"
}Returns a simplified list of transfer items with basic model fields
Use format: Token <your_token>
Page number
1Number of items per page
20Sorting field
Filter by transfer order ID
Filter by product ID
Successful operation
GET /api/v1/oms/transfer-items/list-simple/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"count": 1,
"results": [
{
"id": 1,
"transfer_order": 1,
"product": 1,
"quantity": 1,
"state": 1,
"created_date": "2025-12-01T15:07:49.449Z",
"modified_date": "2025-12-01T15:07:49.449Z"
}
]
}Last updated
Was this helpful?

