1. B2C Return shipment
Onflow Open API
  • Getting Started
  • Overall logic
  • Error code
  • API
    • Config
      • Get Warehouse
      • Get Brand
      • Get Province
      • Get District
      • Get Ward
      • Upload file
      • Pricing
    • 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
        • Get B2C Return Inspection
      • 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
        • Get B2C Return Shipment Inspection
          GET
      • B2B Shipment
        • Create
        • Get list
        • Get detail
        • Cancel
      • B2B Return shipment
        • Create
        • Get list
        • Get detail
        • Cancel
        • Get B2B Return Shipment Inspection
    • Stock
      • Get inventory Batch/lot
      • Get inventory Expired date
      • Get inventory Expired percent
  • Webhook
    • Shipment
      • Updated Shipment Status
    • Return
      • Updated Return Status
    • PO
      • Updated PO Status
    • Stock
      • Updated Stock
  1. B2C Return shipment

Get Return B2C Shipment List

GET
/api/v1/return-shipments/b2c/list
This API is used to retrieve return B2C shipment list.

Request

Authorization
Add parameter in header
Authorization
Example:
Authorization: ********************
Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/api/v1/return-shipments/b2c/list?page=1&page_size=50&keyword=undefined' \
--header 'Accept-Language: vi' \
--header 'Authorization: <api-key>'
Response Response Example
{
    "data": [
        {
            "status_info": {
                "value": 100,
                "label": "Waiting for receive",
                "updated_time": 1774582931
            },
            "warehouse_code": "ONF_WH_HN_LB",
            "return_tracking_code": "OARSC228703037",
            "shipment_tracking_code": "OASC51090555",
            "merchant_return_tracking_code_reference": "MERCHANT-1774582931",
            "partner_tracking_code": "PARTNER1773367142",
            "return_courier_tracking_code": "RCTC-1774582931",
            "returned_time": null,
            "return_completed_time": null,
            "inspection_time": null,
            "is_abnormal": false
        },
        {
            "status_info": {
                "value": 100,
                "label": "Waiting for receive",
                "updated_time": 1774506251
            },
            "warehouse_code": "ONF_WH_HN_LB",
            "return_tracking_code": "OARSC98220674",
            "shipment_tracking_code": "OASC51090555",
            "merchant_return_tracking_code_reference": "MERCHANT-1774506251",
            "partner_tracking_code": "PARTNER1773367142",
            "return_courier_tracking_code": "RCTC-1774506251",
            "returned_time": null,
            "return_completed_time": null,
            "inspection_time": null,
            "is_abnormal": false
        }
    ],
    "error": false,
    "error_code": null,
    "log_id": null,
    "messages": "OK",
    "total": 5,
    "version": "1.0.3",
    "error_detail": null
}
Modified at 2026-03-27 04:15:09
Previous
Create Return B2C Shipment
Next
Get Return B2C Shipment Detail
Built with