POST api/shoppingcart/del
刪除購物車
Request Information
URI Parameters
None.
Body Parameters
DelCartRQContractName | Description | Type | Additional information |
---|---|---|---|
memberId |
會員ID |
integer |
None. |
cartids |
記錄編號 |
Collection of integer |
None. |
tourids |
详细記錄編號 |
Collection of integer |
None. |
itemtype |
類型(fare=機票,hoel=酒店,tour=本地團,insurance=保險,package=機+酒) |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "memberId": 1, "cartids": [ 1, 2 ], "tourids": [ 1, 2 ], "itemtype": "sample string 2" }
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
刪除購物車
ReturnResultOfBooleanName | Description | Type | Additional information |
---|---|---|---|
data | boolean |
None. |
|
code |
状态码:100成功,其他自定义 |
integer |
None. |
message |
提示消息 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "data": true, "code": 2, "message": "sample string 3" }