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
  1. Inbound order API

queryInboundDetail

POST
/inbound/detail

Request

Body Params application/json
appKey
string 
required
The value of app key
accessToken
string 
required
The value of access token
timestamp
integer 
required

Request timestamp:The timestamp is in UNIX time format (seconds) and must be a 10-digit integer.
The valid range for the input timestamp is:
current_time - 300 seconds <= input_time <= current_time + 300 seconds.

sign
string 
required
Request sign:The supported signature algorithm is MD5 (sign_method=md5). The signature process is as follows:
Sort Parameters:
Sort all request parameters (including both public and business parameters) in ascending ASCII order by their first letter.
If two parameters share the same first letter, use the second letter for secondary sorting, and so on, proceeding left to right.
Concatenate Key-Value Pairs:
After sorting, concatenate the parameters into a single string in the order of key1value1key2value2...keyNvalueN.
No separators are included between key-value pairs.
Add app_secret:
Append the app_secret at both the beginning and end of the concatenated string to form the final signature string.
Generate MD5 Hash:
Encrypt the final signature string using the MD5 algorithm. Convert the resulting MD5 hash to uppercase to obtain the sign value.
This method ensures a consistent and secure signature generation process.
applyAsnNo
string 
required
Application ASN (Advance Shipping Notice) Number
Example
{
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "applyAsnNo": "string"
}

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 '/inbound/detail' \
--header 'Content-Type: application/json' \
--data-raw '{
    "appKey": "string",
    "accessToken": "string",
    "timestamp": 0,
    "sign": "string",
    "applyAsnNo": "string"
}'

Responses

🟢200Success
application/json
Body
key
object 
optional
Example
{
  "": {}
}
Previous
queryInboundList
Next
saveInboundInfo
Built with