1. Dewu Order Manage
大吉开放平台 API
  • 文档介绍
    • 接入指南(英文)
      • Platform Overview
      • Become a developer
      • Access Key and Access Secret
      • API Signature Rules (Sign)
      • 1688 API Description
      • Taobao API Description
      • Frequently Asked Question
  • 接口说明
    • 1688 API
      • 1688 Signature & Enumeration
      • 1688 Product Search
        • Image upload By Get
      • 1688 Order Manage
      • 1688 Oder Pay
        • Get payment links for orders in batches
      • 1688 Message Service
        • 1688 Message Service
        • 1688 Messages – Signature Verification
      • 1688 Product Analyze
    • Taobao / Tmall API
      • Taobao / Tmall Signature & Enumeration
      • Taobao / Tmall Product Search
        • Image upload By Get
        • Product Logistics Price Get
        • Product details search v2
        • Product Logistics Price Get v2
        • Product Logistics Price Post v2
      • Taobao / Tmall Order Manage
      • Taobao / Tmall Order Pay
      • Taobao / Tmall Message
        • Taobao / Tmall Message Type
        • Taobao / Tmall Messages – Signature Verification
    • Poizon API
      • Dewu Product Search
      • Dewu Order Manage
        • Create order & Payment API
          POST
        • Query Order Info
          POST
      • Dewu Balance Query API
        • Balance Query API
  • 数据模型
    • 示例数据模型
      • Pet
      • Category
      • Tag
  1. Dewu Order Manage

Create order & Payment API

POST
/poizon/order/createOrder
1.Create a new order and use the prepaid amount for payment. Once the order is successfully created and paid, procurement will proceed. If procurement fails, the prepaid amount will be refunded.
2.The request ID is unique and cannot be changed after the order is created.
3.The recipient addresses must be within China.

请求参数

Body 参数application/json

示例
{
  "appKey": "",
  "appSecret": "",
  "requestId": "REQ202501011003",
  "shippingAddress": {
    "name": "张三",
    "email": "XXX@XXX.com",
    "phone": "18888888888",
    "province": "上海",
    "city": "上海市",
    "district": "闵行区",
    "detailAddress": "中华路29弄01室"
  },
  "product": {
    "dwSpuId": "4329499",
    "dwSkuId": "620516702",
    "distSpuId": "",
    "distSkuId": "",
    "quantity": 1,
    "price": 5900
  }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location '/poizon/order/createOrder' \
--header 'Content-Type: application/json' \
--data-raw '{
  "appKey": "",
  "appSecret": "",
  "requestId": "REQ202501011003",
  "shippingAddress": {
    "name": "张三",
    "email": "XXX@XXX.com",
    "phone": "18888888888",
    "province": "上海",
    "city": "上海市",
    "district": "闵行区",
    "detailAddress": "中华路29弄01室"
  },
  "product": {
    "dwSpuId": "4329499",
    "dwSkuId": "620516702",
    "distSpuId": "",
    "distSkuId": "",
    "quantity": 1,
    "price": 5900
  }
}'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
    "code": 200,
    "msg": "success",
    "data": {
        "requestId": "REQ202501011003",
        "customerOrderNo": "OA00835379",
        "distOrderNo": "913033-OA00835379",
        "orderItems": [
            {
                "distSubOrderNo": "913033-OA00835379_1",
                "orderStatus": "PAID",
                "distSkuId": "379a2694-8ff9-47c6-9e9c-2de3c536511e",
                "dwSkuId": "620516702",
                "quantity": 1,
                "createTime": 1779172708157,
                "modifyTime": 1779172708157,
                "realPayAmount": "59.00",
                "currency": "CNY"
            }
        ]
    },
    "status": 200
}
修改于 2026-07-31 08:48:15
上一页
Taobao / Tmall Messages – Signature Verification
下一页
Query Order Info
Built with