Transfer Order List

🔒

Requires read_inventory access scope.More access scope

The Transfer Order List API retrieves a paginated list of transfer orders. It supports filtering by various parameters such as status, creation date, update date, and specific transfer order IDs.

This API is especially useful for:

  1. Managing transfer orders efficiently by filtering based on custom parameters.
  2. Fetching detailed information about transfer orders for reporting and analysis.
  3. Tracking transfer quantities and statuses between different locations.

Request Parameters

Public Request Parameters

📘

Public Request Parameters

Query Parameters

FieldTypeDescriptionRequiredExample
statusint32Transfer order status.No4
created_at_minstringFilter transfer orders created at or after this date (ISO 8601 format).No2016-01-18T23:41:00Z
created_at_maxstringFilter transfer orders created at or before this date (ISO 8601 format).No2016-01-18T23:41:00Z
updated_at_minstringFilter transfer orders last updated at or after this date (ISO 8601 format).No2016-01-18T23:41:00Z
updated_at_maxstringFilter transfer orders last updated at or before this date (ISO 8601 format).No2016-01-18T23:41:00Z
pagestringPage number for pagination. Defaults to 1 if not specified.No1
limitstringLimit per page for pagination. Defaults to 20.No20
idsstringComma-separated transfer order IDs to filter specific orders.No"372226531310714835,371900642131722195"

Response Explanation

Public Response Parameters

📘

Public Response Parameters

Success Response

FieldTypeDescriptionExample
countint32Total number of transfer orders retrieved.1
transferOrdersarrayList of transfer orders.Array of objects
transferOrders.idint64The unique identifier for the transfer order.372226531310714800
transferOrders.order_nostringTransfer order number."TF202404230001"
transferOrders.source_location_idint64The unique identifier of the source location.333849256890743900
transferOrders.source_location_namestringName of the source location."Warehouse A"
transferOrders.target_location_idint64The unique identifier of the target location.278480468976865150
transferOrders.target_location_namestringName of the target location."Warehouse B"
transferOrders.statusint32Status of the transfer order. Refer to the status enum for possible values.4
transferOrders.notestringAdditional notes for the transfer order."Urgent Transfer"
transferOrders.finished_atstringTimestamp when the transfer order was finished."2024-04-23T05:43:03Z"
transferOrders.created_atstringTimestamp when the transfer order was created."2024-04-23T03:35:21Z"
transferOrders.updated_atstringTimestamp when the transfer order was last updated."2024-05-20T15:59:30Z"
transferOrders.reject_notestringNotes explaining the rejection of the transfer order, if applicable.""
transferOrders.total_quantityint32Total quantity of items in the transfer order.100
transferOrders.shipped_quantityint32Quantity of items that have been shipped.20
transferOrders.received_quantityint32Quantity of items that have been received.20
transferOrders.transfer_atstringTimestamp when the transfer order was initiated."2024-04-23T03:35:21Z"
transferOrders.transfer_quantityint32Quantity of items transferred in the order.20

Error Response

Error responses in the API can be represented using two different fields: errors and error. Both fields provide details about issues encountered during request processing. Below is an explanation of the fields with their respective examples and descriptions.

FieldTypeExampleDescription
errorString "page not found"Indicates an error encountered during the process

Error Detail

Status CodeMessagePossible ReasonExample Response
400Bad RequestInvalid input format or request structure (e.g., missing required fields or incorrect data types).Bad Request
UnauthorizedThe request is missing valid authentication credentials or the credentials provided are invalid.Unauthorized

API Structure Overview

Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!