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

Get app information list

POST
/oauth/get/appInfo/list
Get appKey and appSecret information

Request

Query Params
pageNum
integer 
optional
Page Number
pageSize
integer 
optional
Items Per Page
ownerId
string 
optional
ower id

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/get/appInfo/list'

Responses

🟢200Success
application/json
Body
total
integer 
optional
总记录数
rows
array[object (CredentialsInfoDTO) {4}] 
optional
列表数据
ownerId
string 
optional
appKey
string 
optional
appSecret
string 
optional
appToken
string 
optional
code
integer 
optional
消息状态码
msg
string 
optional
消息内容
admin
boolean 
optional
是否管理员
Example
{
  "total": 0,
  "rows": [
    {
      "ownerId": "",
      "appKey": "",
      "appSecret": "",
      "appToken": ""
    }
  ],
  "code": 0,
  "msg": "",
  "admin": false
}
Previous
Get appKey and appSecret information
Next
Create API access token
Built with