1. B2C Return shipment
Onflow Open API
  • Getting Started
  • Status & Shipment Logic Overview
  • API
    • Config
      • Get Warehouse
      • Get Brand
      • Get Province
      • Get District
      • Get Ward
      • Upload file
    • Product
      • Create Product
      • Assign Product
      • Get Product List
      • Get Product Detail
      • Get Stock
      • Deactivate Product
    • PO
      • Create PO
      • Get PO List
      • Get PO Bill
      • Get PO Detail
      • Get PO Inspection Detail
      • Cancel PO
    • Shipment
      • B2C Shipment
        • Create B2C Shipment
        • Get B2C Shipment List
        • Get B2C Shipment Detail
        • Cancel B2C Shipment
      • B2C Return shipment
        • Create Return B2C Shipment
          POST
        • Get Return B2C Shipment List
          GET
        • Get Return B2C Shipment Detail
          GET
        • Cancel Return B2C Shipment
          PUT
  • Webhook
  1. B2C Return shipment

Get Return B2C Shipment Detail

GET
/api/v1/return-shipments/b2c/{return_tracking_code}/detail
This API is used to retrieve return B2C shipment detail.

Request

Path Params

Header Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/return-shipments/b2c//detail' \
--header 'Authorization: {{token}}' \
--header 'Accept-Language: vi'
Response Response Example
{
    "data": {
        "status_info": {
            "value": 350,
            "label": "Hoàn hàng có vấn đề",
            "updated_time": 1773711202
        },
        "warehouse_code": "ONF_WH_HN_LB",
        "return_tracking_code": "OARSC220807475",
        "shipment_tracking_code": "OASC51090555",
        "merchant_return_tracking_code_reference": "MERCHANT-1773642318",
        "partner_tracking_code": "PARTNER1773367142",
        "return_courier_tracking_code": "RCTC-1773642318",
        "returned_time": 1773642395,
        "return_completed_time": null,
        "inspection_time": 1773642884,
        "is_abnormal": false,
        "is_marketplace": true,
        "platform": "lazada",
        "carrier_service_id": null,
        "carrier_code": "GHN",
        "pickup": {
            "pickup_recipient_name": "ABC",
            "pickup_recipient_phone_number": "0987654321",
            "pickup_recipient_address": "123 Nguyen Van Linh, HCM",
            "pickup_recipient_city": null,
            "pickup_recipient_ward": "Ward 1",
            "pickup_recipient_district": "District 1"
        },
        "return_items": [
            {
                "oasin": "OASIN1128460",
                "product_quantity": 1
            }
        ],
        "return_reason": "Customer requested return",
        "return_journeys": [
            {
                "status_info": {
                    "value": 300,
                    "label": "Đang kiểm hoàn",
                    "updated_time": 1773642884
                },
                "return_tracking_code": "OARSC220807475",
                "source": "WMS"
            },
            {
                "status_info": {
                    "value": 350,
                    "label": "Hoàn hàng có vấn đề",
                    "updated_time": 1773642884
                },
                "return_tracking_code": "OARSC220807475",
                "source": "WMS"
            },
            {
                "status_info": {
                    "value": 200,
                    "label": "Đã nhận hoàn",
                    "updated_time": 1773642395
                },
                "return_tracking_code": "OARSC220807475",
                "source": "WMS"
            },
            {
                "status_info": {
                    "value": 100,
                    "label": "Chờ nhận",
                    "updated_time": 1773642319
                },
                "return_tracking_code": "OARSC220807475",
                "source": "OA"
            }
        ]
    },
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "OK",
    "total": 1,
    "version": "1.0.3",
    "error_detail": null
}
Modified at 2026-03-27 04:15:28
Previous
Get Return B2C Shipment List
Next
Cancel Return B2C Shipment
Built with