API Docs
Home
Home
Developer GuideAPI
StatusWebhooks
Developer GuideAPI
StatusWebhooks
  1. Order Return
  • Config
    • List Pickup Address
      GET
    • List Box Dimension
      GET
    • List vendor
      GET
    • List store
      GET
    • List category
      GET
    • List brand
      GET
    • List Outbound Strategy
      GET
    • List Product Type
      GET
    • List Material
      GET
    • List Storage Method
      GET
    • List Unit
      GET
    • Upload File
      POST
  • Online Product
    • Create Single Product
      POST
    • Create Product From Product Inventory
      POST
    • List product
      GET
    • Product detail
      GET
  • Product Inventory
    • Create single inventory product
      POST
    • List product inventory
      GET
    • Product inventory detail
      GET
    • Get Product Inventory in Warehouse
      GET
  • Order
    • Shipping Service
      • Preview shipping prices
        • List shipping service
        • List available courier
      • List available courier from order
      • List shipping service of courier
    • Create order B2C
      POST
    • Create order B2B
      POST
    • List order
      GET
    • Order detail
      GET
    • Cancel order
      PATCH
  • Shipment
    • Create shipment auto
    • [Retail][Ship by self] Create shipment with item
    • Cancel shipment
    • List shipment
    • Shipment detail
    • List shipment of order
    • Shipment item
  • Shipment Inbound
    • Create shipment inbound
    • Cancel shipment inbound
    • List shipment inbound
    • Shipment inbound detail
    • Shipment inbound items
    • List addtional services
  • Order Return
    • List return order
      GET
    • Return order detail
      GET
    • Return order item
      GET
    • Create return order
      POST
    • Cancel Return Order
      PATCH
  • Courier
    • List courier service integrated
    • List courier operate
    • List courier integrated
  • Address Directory
    • Province
    • District
    • Ward
  1. Order Return

Return order item

GET
/api/v1/public/return-orders/detail/{{return_order_id}}/items
This API returns the list of items in a return order, including product details, return quantities, item status, and inventory information.

Request

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '/api/v1/public/return-orders/detail/{{return_order_id}}/items' \
--header 'Authorization: {{your_api_key_here}}'
Response Response Example
{
    "status_code": 200,
    "data": [
        {
            "id": 1010,
            "currency": "VND",
            "sku": "NB_004",
            "item_status": 1002,
            "sale_price": "150000.00",
            "return_quantity": 1,
            "quantity": 1,
            "weight": 250,
            "stock_level": "A",
            "package_number": "1",
            "partner_id": null,
            "partner_product_id": null,
            "order_item_partner_id": null,
            "created_time": 1760691252.0,
            "updated_time": 1760691252.0,
            "order_return": 699,
            "product": {
                "id": 41498,
                "currency": "VND",
                "platform": "retail",
                "sku": "NB_004",
                "name": "Sữa Tươi Tiệt Trùng No Brand Good Milk 3.5% Béo 1L",
                "original_name": null,
                "image_url": "https://emartmall.com.vn/image/cache/catalog/products/2000001294574/2000001294574-600x600.jpg",
                "original_price": "26900.00",
                "discounted_price": "26900.00",
                "days_to_ship": 0,
                "condition": "NEW",
                "has_variant": false,
                "partner_product_id": null,
                "partner_variant_id": null,
                "priority_sync_stock": 3,
                "status": 200,
                "status_update_time": 1754359024.0,
                "weight": 250,
                "package_length": 10.0,
                "package_width": 10.0,
                "package_height": 10.0,
                "store": 336,
                "parent": null,
                "condition_display": "New",
                "status_display": "On Sale",
                "is_single": true,
                "is_variant": false,
                "is_retail": true
            },
            "item_status_display": "Cancelled by seller",
            "item_status_css": "danger",
            "is_bundle": false,
            "sent_quantity": 1,
            "actual_return_quantity": 1,
            "received_quantity": 0,
            "damaged_quantity": 0,
            "lost_quantity": 0,
            "order_return_item_inventory": [
                930
            ]
        },
        {
            "id": 1011,
            "currency": "VND",
            "sku": "XYZ789",
            "item_status": 1002,
            "sale_price": "100000.00",
            "return_quantity": 2,
            "quantity": 2,
            "weight": 100,
            "stock_level": "A",
            "package_number": "1",
            "partner_id": null,
            "partner_product_id": null,
            "order_item_partner_id": null,
            "created_time": 1760691252.0,
            "updated_time": 1760691252.0,
            "order_return": 699,
            "product": {
                "id": 40537,
                "currency": "VND",
                "platform": "retail",
                "sku": "XYZ789",
                "name": "Kem Đánh Răng Trẻ Em Aquafresh Trên 6 Tuổi 50Ml",
                "original_name": null,
                "image_url": "https://qc.nandh.vn/storage/no_image/no_image.jpg",
                "original_price": "100000.00",
                "discounted_price": "97000.00",
                "days_to_ship": 0,
                "condition": "NEW",
                "has_variant": false,
                "partner_product_id": null,
                "partner_variant_id": null,
                "priority_sync_stock": 3,
                "status": 200,
                "status_update_time": 1751272022.0,
                "weight": 100,
                "package_length": 10.0,
                "package_width": 10.0,
                "package_height": 10.0,
                "store": 336,
                "parent": null,
                "condition_display": "New",
                "status_display": "On Sale",
                "is_single": true,
                "is_variant": false,
                "is_retail": true
            },
            "item_status_display": "Cancelled by seller",
            "item_status_css": "danger",
            "is_bundle": false,
            "sent_quantity": 2,
            "actual_return_quantity": 2,
            "received_quantity": 0,
            "damaged_quantity": 0,
            "lost_quantity": 0,
            "order_return_item_inventory": [
                931
            ]
        }
    ],
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "",
    "total": 2,
    "version": "1.0.19"
}
Previous
Return order detail
Next
Create return order
Built with