Open Api
  1. Inbound order API
Open Api
  • Inbound order API
    • queryInboundListDetail
      POST
    • queryInventoryList
      POST
    • Inventory list
      POST
    • queryInboundList
      POST
    • queryInboundDetail
      POST
    • saveInboundInfo
      POST
    • modifyInboundInfo
      POST
    • inboundSubmit
      POST
    • Inbound order cancel
      POST
  • API service controller
    • Generate appKey and appSecret credentials.
      POST
    • Get appKey and appSecret information
      GET
    • Get app information list
      POST
    • Create API access token
      POST
    • Get API access token
      POST
  • Outbound order API
    • modifyOutbound
      POST
    • saveInboundInfo
      POST
  • Sku API
    • order list
      POST
  • Return order API
    • Untitled Endpoint
      POST
    • Untitled Endpoint
      POST
  • Schemas
    • Warehousing
    • PageTableInfoWarehousing
    • SaveOutBoundDetail
    • PageOpenApiTableInfoWarehousing
    • SaveOutbound
    • QueryWarehousingReq
    • AjaxResult
    • AjaxResultGenericsQueryWarehousingDetailResp
    • SaveOutboundOrderReq
    • QueryWarehousingDetailReq
    • AjaxResultGenericsString
    • SaveWarehousingReq
    • SaveInboundDetail
    • SaveInbound
    • ModifyWarehousingReq
    • ModifyInboundDetail
    • ModifyInbound
    • CancelInboundOrderReq
    • AppCredentials
    • ModifyAsnStateReq
    • RAppCredentials
    • AppInfoReq
    • CredentialsInfoDTO
    • PageTableInfoCredentialsInfoDTO
    • AppTokenReq
  1. Inbound order API

queryInventoryList

Testing
POST
inventory/list

Request

Body Params application/json

Example
{
    "pageNum": 1,
    "pageSize": 10,
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "ownerIds": [
        "string"
    ],
    "condition": "string",
    "state": "string",
    "warehouseId": "string"
}

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 --request POST 'inventory/list' \
--header 'Content-Type: application/json' \
--data-raw '{
    "pageNum": 1,
    "pageSize": 10,
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "ownerIds": [
        "string"
    ],
    "condition": "string",
    "state": "string",
    "warehouseId": "string"
}'

Responses

🟢200Success
application/json
Body

Example
{
  "total": 0,
  "rows": [],
  "code": 0,
  "msg": "",
  "admin": false
}
Modified at 2025-03-27 19:01:46
Previous
queryInboundListDetail
Next
Inventory list
Built with