Order
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
id | string | 订单唯一id | Y |
customer_id | string | 顾客Id | Y |
name | string | 订单的唯一编号 | Y |
string | 邮箱 | Y | |
phone | string | 手机号码 | N |
country_code | string | 国家二代码 | N |
cart_token | string | 引用与购物车时关联的的唯一值 | N |
checkout_token | string | 引用与结帐时关联的的唯一值 | N |
order_status | string | 订单状态: PENDING 待处理 PAID 已支付 PARTIALLY_PAID 部分支付 PARTIALLY_REFUNDED 部分退款 REFUNDED 退款 CANCELLED 订单取消 FAILED失败 | Y |
fulfillment_status | string | 订单配送状态: FULFILLED 已发货 PARTIAL 部分完成 UNFULFILLED 未完成 RESTOCKED 取消 FINISHED 发货完成 | N |
shipping_address | object | Address 对象 | N |
billing_address | object | Address 对象 | N |
line_items | array | Line_items对象 | Y |
order_status_url | string | 指向订单状态网页的 URL (未结账或者已结账的页面) | N |
currency | string | 币种因为缩写如 USD | Y |
total_discount | string | 订单折扣总金额 | N |
subtotal_price | string | 小计 | N |
total_shipping | string | 运费 | N |
total_tax | string | 税费 | N |
total_price | string | 订单总价格 | Y |
payment_method | string | 支付方式 | N |
payment_at | number | 支付时间11位时间戳精确到秒,我们系统所有显示订单时间的地方使用的是支付时间 | N |
shipping_method | string | 运输方式 | N |
updated_at | number | 更新时间11位时间戳精确到秒 | Y |
created_at | number | 创建时间11位时间戳精确到秒 | Y |
Address
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
first_name | string | FIrst name | N |
last_name | string | Last name | N |
phone | string | 手机号码 | N |
country_code | string | 国家二代代码 | N |
country_name | string | 国家名称 | N |
province_code | string | 洲/省编码 | N |
province | string | 洲/省 | N |
city | string | 城市 | N |
zip | string | 邮编 | N |
address1 | string | 详细地址1 | N |
address2 | string | 详细地址2 | N |
Line_items
字段 | 类型 | 描述 | 是否必填 |
---|---|---|---|
id | string | 订单项目唯一id | Y |
src | string | 产品变体图片 | Y |
name | string | 产品变体的名称 | Y |
sku | string | 产品变体的SKU编号 | Y |
variant_title | string | 产品变体的标题 | Y |
variant_id | string | 产品变体唯一id | Y |
quantity | integer | 购买数量 | Y |
line_price | string | 单价 | Y |
title | string | 产品的标题 | Y |
product_id | string | 产品id | Y |
product_url | string | 产品url | Y |
fulfillment_status | string | 发货状态 | N |
tracking_company | string | 货运公司 | N |
tracking_number | string | 快递单号 | N |