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
    • GetStockAge
      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
    • placeThirdPartyLabelOrder
      POST
  • Warehouse
    • GetServiceList
      GET
  • Pricing
    • Cost Estimation Request
    • Cost Estimation Response
  • VAS
    • placeVasOrder
    • queryVasOrderDetail
    • cancelVasOrder
  • Webhook
    • Outbound Callback Webhook Reception
  • return
    • Return 2.0 退货订单开放接口
      • 查询退货订单
      • 获取面单
      • 取消 RMA 订单或同步更新退货跟踪信息
      • 查询退货库存快照
      • 关联退件库存商品
      • Erp提交订单
    • Auth
      • 获取AccessToken
    • 财务明细接口
      • 费用明细查询
  1. Stock

GetStockAge

Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
Sandbox
https://openapi-stage-hk.orangeconnex.com/openapi
POST
/3pp/inventory/v1/snapshotAge
3PP can get inventory age information for SKU/s through this API

Request

Header Params

Body Params application/json

Example
{
    "timestamp": 0,
    "messageId": "string",
    "apiVersion": "string",
    "data": {
        "pageNumber": 0,
        "pageSize": 0,
        "serviceRegion": "string",
        "SKUList": [
            {
                "MFSKUID": "string"
            }
        ],
        "ageRangeFrom": 0,
        "ageRangeTo": 0
    }
}

Request Code 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 'https://openapi-stage-hk.orangeconnex.com/openapi/3pp/inventory/v1/snapshotAge' \
--header 'clientKey: bd1d1971-d0db-11ea-b4a1-00505694c27b' \
--header 'vAuthorization;' \
--header 'Access-Token: ' \
--header 'Content-Type: application/json' \
--data '{
    "timestamp": 0,
    "messageId": "string",
    "apiVersion": "string",
    "data": {
        "pageNumber": 0,
        "pageSize": 0,
        "serviceRegion": "string",
        "SKUList": [
            {
                "MFSKUID": "string"
            }
        ],
        "ageRangeFrom": 0,
        "ageRangeTo": 0
    }
}'

Responses

🟢200
application/json
Bodyapplication/json

Example
{
    "success": true,
    "code": 0,
    "messageId": "string",
    "message": "string",
    "data": {
        "pageNumber": 0,
        "pageSize": 0,
        "hasNextPage": true,
        "totalPage": 0,
        "SKUList": [
            {
                "MFSKUID": "string",
                "serviceRegion": "string",
                "available": 0,
                "reservedAllocated": 0,
                "reservedHold": 0,
                "reservedVAS": 0,
                "unfulfillable": 0,
                "inboundDate": "string",
                "ageDays": 0
            }
        ]
    },
    "errors": [
        {
            "id": "string",
            "code": "string",
            "message": "string",
            "referenceNumber": "string"
        }
    ]
}
Modified at 2026-06-05 10:20:46
Previous
StockSnapshot v2
Next
PlaceInboundOrder
Built with