Open Api
  1. API service controller
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. API service controller

Generate appKey and appSecret credentials.

POST
/oauth/generate/appInfo
Generate appKey and appSecret credentials.

Request

Body Params application/json
ownerId
string 
optional
ower id
Example
{
    "ownerId": "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 '/oauth/generate/appInfo' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ownerId": "string"
}'

Responses

🟢200Success
application/json
Body
code
integer 
optional
msg
string 
optional
data
object (AppCredentials) 
optional
appKey
string 
optional
appKey (8位)
The value of app key
appSecret
string 
optional
appSecret (32位)
The value of app secret
Example
{
  "code": 0,
  "msg": "",
  "data": {
    "appKey": "",
    "appSecret": ""
  }
}
Previous
Inbound order cancel
Next
Get appKey and appSecret information
Built with