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

订单详情

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

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
orderId
string 
optional
订单号
includeFields
string 
optional
包含的字段信息
orderItemList,feeList
Example
{
    "orderId": "string",
    "includeFields": "string"
}

Responses

🟢200OK
application/json
Body
code
string 
optional
状态码
msg
string 
optional
信息
data
object (OrderDetailResult) 
optional
数据
orderId
string 
optional
订单号
outOrderId
string 
optional
外部订单号
status
string 
optional
订单状态
cancelType
string 
optional
取消订单的类型
cancelMemo
string 
optional
取消订单的说明
createTime
string 
optional
创建时间
updateTime
string 
optional
修改时间
payTime
string 
optional
第一次支付时间
productTotalAmount
string 
optional
商品总金额 CNY 元 2.48
freightTotalAmount
string 
optional
运费总金额 CNY 元 2.48
serviceTotalAmount
string 
optional
服务费总金额 CNY 元 2.48
orderItemList
array[object (CargoItemResult) {7}] 
optional
购买的商品,sku,明细,数量, 单价,总价
feeList
array[object (FeeItem) {9}] 
optional
费用明细
logisticsList
array[object (LogisticsItem) {5}] 
optional
物流明细
requestId
string 
optional
请求ID,方便问题跟踪
Example
{
    "code": "",
    "msg": "",
    "data": {
        "orderId": "",
        "outOrderId": "",
        "status": "",
        "cancelType": "",
        "cancelMemo": "",
        "createTime": "",
        "updateTime": "",
        "payTime": "",
        "productTotalAmount": "",
        "freightTotalAmount": "",
        "serviceTotalAmount": "",
        "orderItemList": [
            {
                "productId": 0,
                "skuId": "",
                "quantity": 0,
                "price": "",
                "amount": "",
                "productName": "",
                "skuAttributeNames": [
                    ""
                ]
            }
        ],
        "feeList": [
            {
                "id": "",
                "code": "",
                "createTime": "",
                "amount": "",
                "currency": "",
                "rate": "",
                "memo": "",
                "isPayed": false,
                "payTime": ""
            }
        ],
        "logisticsList": [
            {
                "deliveredDate": "",
                "goodsInfo": "",
                "goodsInfoNames": "",
                "channelCode": "",
                "logisticNo": ""
            }
        ]
    },
    "requestId": ""
}
Previous
提交订单
Next
取消订单
Built with