Depal Open API Doc
  1. Order Service
Depal Open API Doc
  • 中文
    • 接入说明
      • 基本概念
      • 签名规则
      • 获取Token
    • 商品服务
      • 1688
        • 商品详情
        • 商品池查询
    • 订单服务
      • 下单前预览
      • 提交订单
      • 订单详情
      • 取消订单
      • 物流跟踪查询
  • English
    • API Instruction
      • Signature Rule
      • Get Token
    • product service
      • alibaba wholesale(1688)
        • Commodity Details
        • Commodity Pool Query
    • Order Service
      • Pre-order Preview
        POST
      • Submit Order
        POST
      • Order Details
        POST
      • Cancel Order
        POST
      • Logistics tracking query
        POST
  1. Order Service

Submit Order

POST
/openapi/1/{appKey}/1688.order.create.order

Request

Path Params
appKey
string 
required
Header Params
Authorization
string 
optional
Default:
{{smile_admin_Authon}}
Example:
{{smile_admin_Authon}}
x-depal-timestamp
string 
required
timestamp when calling the service, milliseconds
x-depal-access-token
string 
required
retrieve from "system.token.get"
x-depal-signature
string 
required
sign the request data, refer to the signature document
Body Params application/json
outOrderId
string 
optional
External Order Number
address
object (AddressDTOEn) 
optional
Receiving address information
userName
string 
optional
Recipient, full name
phone
string 
optional
Contact number, with country number
country
string 
optional
Country Code
province
string 
optional
Province Code
city
string 
optional
City Code
address
string 
optional
Detailed address
postCode
string 
optional
Postcode
cargoList
array[object (CargoItemParamEn) {3}] 
optional
Purchased goods, sku, quantity
productId
integer <int64>
optional
Commodity ID
skuId
string 
optional
sku unique identifier, string
quantity
integer 
optional
Stock Quantity
previewId
string 
optional
preview interface returned id
Example
{
    "outOrderId": "string",
    "address": {
        "userName": "string",
        "phone": "string",
        "country": "string",
        "province": "string",
        "city": "string",
        "address": "string",
        "postCode": "string"
    },
    "cargoList": [
        {
            "productId": 0,
            "skuId": "string",
            "quantity": 0
        }
    ],
    "previewId": "string"
}

Responses

🟢200OK
application/json
Body
code
string 
optional
Status Code
msg
string 
optional
INFORMATION
data
object (OrderCreateOrderResultEn) 
optional
Data
orderId
string 
optional
Created successfully, order number
requestId
string 
optional
Request ID for easy issue tracking
Example
{
    "code": "",
    "msg": "",
    "data": {
        "orderId": ""
    },
    "requestId": ""
}
Previous
Pre-order Preview
Next
Order Details
Built with