優惠券API / 查詢優惠券列表
優惠券API / 查詢優惠券列表
發布日期:2018-10-27
瀏覽次數:2511
1.1 說明
路徑 | //www.your_website_d🌃omain.com/FeiEditor/api_💞v1/shop/coupons |
方法 | GET/POST |
說明 | 根據查詢條件,獲得優惠券列表。 |
1.2 參數
名稱 | 必須 | 類型 | 描述 |
filter[] | No | array | 過濾器。使用方法請點這里。 |
filter[limit] | No | int | 一次查詢返回的優惠券的數量,默認是10。有效范圍是1到1000。 |
page | No | int | 當前查詢的頁數,和filter[limit]配合使用。用來實現分頁查詢。 |
1.3 返回結果
正確結果 |
返回格式:JSON |
{ "coupons": [ { "id": 1, "code": "new-coupon", "type": "percent", "created_at": "2018-01-01T19:05:27Z", "updated_at": "2018-01-01T19:05:27Z", "amount": "10.00", "individual_use": true, "product_ids": [], "exclude_product_ids": [], "usage_limit": null, "usage_limit_per_user": null, "limit_usage_to_x_items": 0, "usage_count": 0, "expiry_date": null, "enable_free_shipping": false, "product_category_ids": [], "exclude_product_category_ids": [], "exclude_sale_items": true, "minimum_amount": "100.00", "customer_emails": [], "description": "" } ] } |