open api
  1. Order
open api
  • Authorization
    • Get Authorization
      GET
  • Category
    • Get children of the category specified
      GET
    • Get parent of the category specified
      GET
  • Product
    • Search products
      GET
    • Get the details of the specified product
      GET
    • Get the details of the specified product with images
      GET
    • Get status of a list of products
      GET
    • Download the images of the specified product
      GET
    • Download the Scenseimage of the specified product
      GET
    • Search products with specific main category
      GET
  • Order
    • Create Order
      POST
    • Create Dropshipping Orders
      POST
    • Create order(Deprecated)
      POST
    • Get Order List
      GET
    • Get Order Information
      GET
  • Shipping
    • Shipping Calculation
      POST
    • Shipping Calculation Enhancement
      POST
  1. Order

Create Order

POST
/order/AddOrder
Create order

请求参数

Header 参数

Body 参数application/json必填

示例
{
    "skus": "103522418A*5,6601203130A*4",
    "language": "en",
    "currencycode": "USD",
    "address": {
        "country_code": "US",
        "full_name": "Michael Johnson",
        "telephone_mobile": "13471234567",
        "zip_code": "90210",
        "street_address": "123 Main Street, Apt 4B",
        "town_city": "Beverly Hills",
        "province_state": "CA"
    }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/order/AddOrder' \
--header 'Authorization: Cqke+/PKXEyiA8KuHnjoRg==' \
--header 'Content-Type: application/json' \
--data-raw '{
    "skus": "103522418A*5,6601203130A*4",
    "language": "en",
    "currencycode": "USD",
    "address": {
        "country_code": "US",
        "full_name": "Michael Johnson",
        "telephone_mobile": "13471234567",
        "zip_code": "90210",
        "street_address": "123 Main Street, Apt 4B",
        "town_city": "Beverly Hills",
        "province_state": "CA"
    }
}'

返回响应

🟢200success
application/json
Body

示例
{
    "OrderInfo": {
        "OrderID": "V25110400020",
        "Currency": {
            "CurrencyCode": "USD",
            "CurrencyName": "USD",
            "FormatString": "${0:N2}",
            "Format2String": "USD{0:0.00}",
            "Format3String": "USD-${0:0.00}",
            "Symbol": "$ - USD",
            "Symbol2": "USD",
            "Symbol3": "USD - $"
        },
        "OriginalAmount": 0.76,
        "DiscountedAmount": 0.76,
        "Remark": "",
        "ShippingMethodName": "",
        "OrderAddressInfo": [
            {
                "country_code": "US",
                "full_name": "Michael Johnson",
                "telephone_mobile": "13471234567",
                "zip_code": "90210",
                "street_address": "123 Main Street, Apt 4B",
                "town_city": "Beverly Hills",
                "province_state": "CA"
            }
        ],
        "Trackingnumbers": [],
        "CreatedOn": "2025-11-04T15:38:26",
        "ModifiedOn": "2025-11-04T07:38:41",
        "Items": [
            {
                "SKU": "641000138A",
                "Name": "star test 23 08 16 00301 Black",
                "UnitPrice": 0.76,
                "OriginalPrice": 0.76,
                "Quantity": 1,
                "Subtotal": 0.76
            }
        ]
    },
    "Logs": {
        "OrderId": "V25110400020",
        "SuccessItems": [
            {
                "SKU": "641000138A",
                "ProductName": "star test 23 08 16 00301 Black",
                "ProductImage": "/uploads/641000138A.jpg",
                "CatalogName": null,
                "AddedQuantity": 1,
                "Quantity": 1,
                "Price": 0.76,
                "OrderId": "V25110400020",
                "Remark": null,
                "CustomerSKU": "",
                "Exists": 0,
                "Url": "/details/star-test-23-08-16-00301-black-sku641000138a.html",
                "IsSpilt": false,
                "Message": "successfully added to order Order No. [V25110400020]"
            }
        ],
        "FailedItems": [
            {
                "SKU": "103522418A",
                "ProductName": "tvc 吃   Anti-scratch Shockproof Cell Phone Tempered Glass Film Super Clear Silk Printing Full Covering Full Glue Screen Protector",
                "ProductImage": "/uploads/103522418A.jpg",
                "CatalogName": null,
                "AddedQuantity": 0,
                "Price": 1.81,
                "Url": "/details/fofor-nokia-g11-anti-scratch-shockproof-cell-phone-tempered-glass-film-super-clear-silk-printing-full-covering-full-glue-screen-protector-sku103522418a.html",
                "OrderId": "",
                "Quantity": 5,
                "Remark": null,
                "CustomerSKU": "",
                "Exists": 0,
                "IsSpilt": false,
                "ErrorMessage": {
                    "SKU": "103522418A",
                    "Message": "the item can't to this type of order.",
                    "Data": null,
                    "ErrorCode": "202",
                    "DetailCode": "T40060",
                    "TransMessage": null,
                    "TransMessageArgs": null
                }
            }
        ],
        "Currency": {
            "CurrencyCode": "USD",
            "CurrencyName": "USD",
            "FormatString": "${0:N2}",
            "Format2String": "USD{0:0.00}",
            "Format3String": "USD-${0:0.00}",
            "Symbol": "$ - USD",
            "Symbol2": "USD",
            "Symbol3": "USD - $"
        },
        "Success": true,
        "OrderID": "V25110400020",
        "Orders": [
            {
                "orderId": "V25110400020",
                "Item1": ""
            }
        ],
        "StandardCode": "T40073",
        "StandardIsSuccess": true,
        "StandardErrorMsg": "",
        "Splitinfo": null
    }
}
🟢200unauthorized
修改于 2026-01-21 04:17:28
上一页
Search products with specific main category
下一页
Create Dropshipping Orders
Built with