優惠券API / 創建優惠券
優惠券API / 創建優惠券
發布日期:2018-10-27
瀏覽次數:1909
1.1 說明
路徑 | //w✱ww.your_website_domain.com/FeiEditor/api_v1/shop/coupons/create |
方法 | POST |
說明 | 創建一個新用戶 |
1.2 參數
名稱 | 必須 | 類型 | 描述 |
code | Yes | string | 優惠券代碼,不能有重復的 |
type | No | string |
優惠券類型,可以是fixed_cart, percent, fixed_product 和 percent_product 中的任何一個。默認是 fixed_cart 。
fixed_cart - 通用固定金額
percent - 通用百分比
fixed_product - 某商品固定金額
percent_product - 某商品百分比
|
amount | No | int | 優惠券金額或百分比,數字 |
individual_use | No | 布爾值 | 是否只能單獨使用此優惠券,默認是否 |
product_ids | No | string | 能使用此優惠券使用的商品,如果需要多個用英文逗號隔開,例如:123,456。 |
exclude_product_ids | No | string | 不能使用此優惠券使用的商品,如果需要多個用英文逗號隔開,例如:123,456。 |
usage_limit | No | int | 這個優惠券最多被使用多少次,默認沒有限制 |
usage_limit_per_user | No | int | 每個顧客最大可以使用的數量,默認沒有限制 |
expiry_date | No | date | 過期日期,例如:2101-01-01,默認不過期 |
enable_free_shipping | No | 布爾值 | 是否免運費 |
product_category_ids | No | string | 能使用此優惠券使用的商品分類,如果需要多個用英文逗號隔開,例如:123,456。 |
exclude_product_category_ids | No | string | 不能使用此優惠券的商品分類,如果需要多個用英文逗號隔開,例如:123,456。 |
minimum_amount | No | int | 購物車中滿多少才能使用此優惠券 |
customer_emails | No | string | 能使用此優惠券的客戶的郵箱,如果有多個客戶請用英文逗號分開。例如:[email protected],[email protected] |
description | No | string | 優惠券的描述 |
1.3 返回結果
正確結果 |
返回格式:JSON |
{ "customer": { "id": 1, "created_at": "2018-10-10T18:00:00Z", "email": "[email protected]", "first_name": "Demo", "last_name": "User", "username": "demouser01", "last_order_id": 123, "last_order_date": "2018-10-10T18:00:00Z", "orders_count": 10, "total_spent": "1034.58", "avatar_url": "", "billing_address": { "first_name": "", "last_name": "", "company": "", "address_1": "", "address_2": "", "city": "", "state": "", "postcode": "", "country": "", "email": "", "phone": "" }, "shipping_address": { "first_name": "", "last_name": "", "company": "", "address_1": "", "address_2": "", "city": "", "state": "", "postcode": "", "country": "" } } } |