UpdateECommerceCarts
Update the ECommerceCart. To update lines in ECommerceCarts, use UPDATE in the ECommerceCartLines table.
Input
| Name | Type | Required | Description |
| StoreId | String | True | The StoreId for the table. |
| Id | String | True | A unique identifier for the cart. |
| Customer | String | False | Information about a specific customer. Carts for existing customers should include only the Id parameter in the customer object body. |
| CampaignId | String | False | A string that uniquely identifies the campaign associated with a cart. |
| CheckoutUrl | String | False | The URL for the cart. |
| CurrencyCode | String | False | The three-letter ISO 4217 code for the currency that the cart uses. |
| OrderTotal | Decimal | False | The order total for the cart. |
| TaxTotal | Decimal | False | The total tax for the cart. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the operation was successful. |
| Id | String | The Id of the cart. |
| StoreId | String | The Id of the store. |
| Customer | String | Information about a specific customer. Carts for existing customers should include only the Id parameter in the customer object body. |
| CampaignId | String | A string that uniquely identifies the campaign associated with a cart. |
| CheckoutUrl | String | The URL for the cart. |
| CurrencyCode | String | The three-letter ISO 4217 code for the currency that the cart uses. |
| OrderTotal | Decimal | The order total for the cart. |
| TaxTotal | Decimal | The total tax for the cart. |