Overview
The goal of this method is to allow the caller to modify the contents of a cart. The information passed in this method are designed to replace the previous contents of a cart.
Request
Field Name |
Data Type |
Description |
| accountID |
string |
A unique identifier representing the ChannelAdvisor account you wish to access. |
| cartID |
int |
Unique identifier of a cart you wish to modify. |
| buyerEmail |
string |
E-mail address of buyer |
| lineItem |
CartItemRequest[] |
Cart items you wish to replace in former cart |
Response
Field Name |
Data Type |
Description |
| ModifyCartResult |
APIResult<Cart> |
This method returns a type named APIResultOfCart. See more information on APIResult. The cart information returned by this method will be contained in the ResultData field. |
References