Transfer Orders
Transfer order operations and management
Returns a paginated list of transfer orders with comprehensive filtering options.
Use format: Token <your_token>
Response format
jsonPossible values: Page number
1Number of items per page
20Sorting field
Filter by state ID
Filter by state enum value
Filter by order ID
Filter by order number
Filter by package ID
Filter by package number
Filter by product SKU
Filter by product barcode
Filter by source stock location ERP code
Filter by destination stock location ERP code
Filter by retail store ERP code
Filter by ERP code
Filter by customer first name
Filter by customer last name
Filter by order date
Filter IDs greater than this value
Filter IDs greater than or equal to this value
Filter IDs less than this value
Filter IDs less than or equal to this value
Filter by primary keys (comma-separated)
Filter by channel ID
Filter by shipment cargo company
Filter by destination country
Successful operation
GET /api/v1/oms/transfer_orders/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"count": 1,
"next": "text",
"previous": "text",
"results": [
{
"id": 1,
"number": "text",
"state": {},
"order": {},
"package": {},
"source": {},
"destination": {},
"created_date": "2025-11-27T02:41:43.446Z",
"modified_date": "2025-11-27T02:41:43.446Z",
"extra_information": {}
}
]
}Retrieve a specific transfer order by its ID
Use format: Token <your_token>
Transfer order details
GET /api/v1/oms/transfer_orders/{id}/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Transfer order details
{
"id": 1,
"number": "text",
"state": {},
"order": {},
"package": {},
"source": {},
"destination": {},
"created_date": "2025-11-27T02:41:43.446Z",
"modified_date": "2025-11-27T02:41:43.446Z",
"extra_information": {}
}Get a list of transfer orders with minimal information
Use format: Token <your_token>
Response format
jsonPossible values: Page number
1Number of items per page
20Sorting field
Filter by state ID
Filter by state enum value
Filter by order ID
Filter by order number
Filter by package ID
Filter by package number
Successful operation
GET /api/v1/oms/transfer_orders/short/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"count": 1,
"results": [
{
"id": 1,
"number": "text",
"state": "text",
"source_erp_code": "text",
"destination_erp_code": "text"
}
]
}Get a single transfer order with minimal information
Use format: Token <your_token>
Successful operation
GET /api/v1/oms/transfer_orders/{id}/short/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"id": 1,
"number": "text",
"state": "text",
"source_erp_code": "text",
"destination_erp_code": "text"
}Execute a command on a specific transfer order
Use format: Token <your_token>
Command to execute
Command parameters
Command executed successfully
No content
Invalid command or parameters
POST /api/v1/oms/transfer_orders/{id}/command/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"command": "text",
"params": {}
}No content
Retrieve extra information for a specific transfer order
Use format: Token <your_token>
Extra information retrieved successfully
GET /api/v1/oms/transfer_orders/{id}/extra_information/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Extra information retrieved successfully
{}Set or update the invoice number for a specific transfer order
Use format: Token <your_token>
Invoice number to set
Invoice number updated successfully
No content
PATCH /api/v1/oms/transfer_orders/{id}/set_invoice_number/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 25
{
"invoice_number": "text"
}Invoice number updated successfully
No content
Set or update the remote ID for a specific transfer order
Use format: Token <your_token>
Remote ID to set
Remote ID updated successfully
No content
PATCH /api/v1/oms/transfer_orders/{id}/set_remote_id/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 20
{
"remote_id": "text"
}Remote ID updated successfully
No content
Retrieve state transition logs for a specific transfer order
Use format: Token <your_token>
Page number
1Number of items per page
20Transition logs retrieved successfully
GET /api/v1/oms/transfer_orders/{id}/transition_logs/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Transition logs retrieved successfully
{
"count": 1,
"results": [
{
"id": 1,
"content_object": {},
"old_state": {},
"new_state": {},
"created_date": "2025-11-27T02:41:43.446Z",
"extra_data": {}
}
]
}Retrieve a specific transition log by ID
Use format: Token <your_token>
Transition log retrieved successfully
GET /api/v1/oms/transfer_orders/{id}/transition_logs/{log_id}/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Transition log retrieved successfully
{
"id": 1,
"content_object": {},
"old_state": {},
"new_state": {},
"created_date": "2025-11-27T02:41:43.446Z",
"extra_data": {}
}Returns a simplified list of transfer orders with basic model fields
Use format: Token <your_token>
Page number
1Number of items per page
20Sorting field
Successful operation
GET /api/v1/oms/transfer_orders/list-simple/ HTTP/1.1
Host: domain.akinon.com
Authorization: YOUR_API_KEY
Accept: */*
Successful operation
{
"count": 1,
"results": [
{
"id": 1,
"number": "text",
"state": 1,
"order": 1,
"package": 1,
"source": 1,
"destination": 1,
"created_date": "2025-11-27T02:41:43.446Z",
"modified_date": "2025-11-27T02:41:43.446Z"
}
]
}Last updated
Was this helpful?

