Open-API
  1. Stock
Open-API
  • eBay fulfillment openAPI
  • OAuth
    • URL(getAuthorizationCode)
      GET
    • AccessToken
      POST
    • Refresh AccessToken
      POST
  • SKU
    • SKUCreation v3
      POST
    • SKUQuery v3
      POST
    • SKU Label
      POST
    • SKUSetupEFService
      POST
    • QuerySKUEFService
      POST
  • Stock
    • GetStockMovement
      POST
    • StockSnapshot v2
      POST
  • Inbound
    • PlaceInboundOrder
      POST
    • Inbound Order List Query
      POST
    • Inbound Order Detail Query
      POST
    • Inbound Label Query
      POST
    • Upload TrackingNo
      POST
    • Upload Clearance Doc
      POST
  • Outbound
    • Place Outbound Order
      POST
    • Outbound Order Query v2
      POST
    • Outbound Order Cancellation
      POST
  • Warehouse
    • GetServiceList
      GET
  • Pricing
    • Cost Estimation Request
      POST
    • Cost Estimation Response
      POST
  1. Stock

GetStockMovement

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/inventory/v1/movement
This endpoint allows you to retrieve inventory movement records for specified SKUs across various regional warehouses.
Key Features:
Timeframe Limitation: This endpoint supports querying inventory movement data for the past year only.
Date Range Restriction: Each query is limited to a date range of 7 days.
For a complete list of regional warehouses, we recommend using the getServiceList API.
该接口支持获取指定 SKU 在各个区域仓内的库存流水变动记录。
主要功能:
时间限制: 此接口仅支持查询过去一年的库存流水数据。
日期范围限制: 每次查询的起止时间范围限制在 7 天内。
有关区域仓的完整列表,建议您使用 getServiceList API。

Request

Header Params

Body Params application/json

Example
{
    "apiVersion": "string",
    "data": {
        "endTime": "2024-07-20T10:10:10+0800",
        "mfSkuList": [
            {
                "mfSkuId": "OC0000012220012"
            }
        ],
        "startTime": "2024-07-13T10:10:10+0800"
    },
    "messageId": "string",
    "timestamp": 0
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/inventory/v1/movement' \
--header 'clientKey: bd1d1971-d0db-11ea-b4a1-00505694c27b' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data-raw '{
    "apiVersion": "string",
    "data": {
        "endTime": "2024-07-20T10:10:10+0800",
        "mfSkuList": [
            {
                "mfSkuId": "OC0000012220012"
            }
        ],
        "startTime": "2024-07-13T10:10:10+0800"
    },
    "messageId": "string",
    "timestamp": 0
}'

Responses

🟢200OK
application/json
Body

Examples
{
    "code": 3,
    "errors": [
        {
            "code": "400007",
            "message": "startTime 字段格式必须为:yyyy-MM-dd'T'HH:mm:ssZ!"
        }
    ],
    "message": "参数错误",
    "messageId": "string"
}
🟢201Created
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2025-06-18 10:23:03
Previous
QuerySKUEFService
Next
StockSnapshot v2
Built with