Transfer Order Detail

🔒

Requires read_inventory access scope.More access scope

The Transfer Order Detail API retrieves detailed information about a specific transfer order based on the transfer_order_id. This API provides key details such as transfer status, quantities, timestamps, and associated location information.

This API is especially useful for:

  1. Viewing detailed transfer order information for auditing or tracking purposes.
  2. Integrating transfer order details into inventory management systems.
  3. Verifying transfer quantities and statuses.

Request Parameters

Public Request Parameters

📘

Public Request Parameters

Path Parameters

FieldTypeDescriptionRequiredExample
transfer_order_idstringTransfer order ID to retrieve its details.Yes"3951260339771676100"

Response Explanation

Public Response Parameters

📘

Public Response Parameters

Success Response

FieldTypeDescriptionExample
transfer_orderobjectThe transfer order object containing detailed information.Object
transfer_order.idint64The unique identifier for the transfer order.3951260339771676100
transfer_order.order_nostringTransfer order number."TF2024062500005"
transfer_order.source_location_idint64The unique identifier of the source location.328078441158026100
transfer_order.source_location_namestringName of the source location."Warehouse A"
transfer_order.target_location_idint64The unique identifier of the target location.329153840243645400
transfer_order.target_location_namestringName of the target location."Warehouse B"
transfer_order.statusint32Status of the transfer order. Refer to the status enum for possible values.4
transfer_order.notestringAdditional notes for the transfer order."Urgent Transfer"
transfer_order.finished_atstringTimestamp when the transfer order was finished."2024-06-25T08:07:01Z"
transfer_order.created_atstringTimestamp when the transfer order was created."2024-06-25T08:05:49Z"
transfer_order.updated_atstringTimestamp when the transfer order was last updated."2024-06-25T08:07:01Z"
transfer_order.reject_notestringNotes explaining the rejection of the transfer order, if applicable.""
transfer_order.total_quantityint32Total quantity of items in the transfer order.0
transfer_order.shipped_quantityint32Quantity of items that have been shipped.0
transfer_order.received_quantityint32Quantity of items that have been received.0
transfer_order.transfer_atstringTimestamp when the transfer order was initiated."2024-06-25T08:05:49Z"
transfer_order.transfer_quantityint32Quantity of items transferred in the order.0

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!