UpdateECommerceCarts
Updates an existing e-commerce cart record. To modify individual line items, use the ECommerceCartLines table.
Input
| Name | Type | Required | Description |
| StoreId | String | True | The unique identifier of the e-commerce store where the cart exists. |
| Id | String | True | The unique identifier of the shopping cart to be updated. |
| Customer | String | False | The customer information associated with the cart. For existing customers, include only the customer identifier to prevent duplication. |
| CampaignId | String | False | The Id of the marketing campaign associated with the cart. |
| CheckoutUrl | String | False | The URL customers can use to access and complete the checkout process for this cart. |
| CurrencyCode | String | False | The three-letter ISO 4217 currency code used for all financial amounts in the cart. |
| OrderTotal | Decimal | False | The total monetary value of the cart, excluding taxes and discounts. |
| TaxTotal | Decimal | False | The total amount of tax applied to the cart. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the cart update was successful. |
| Id | String | The unique identifier of the updated cart. |
| StoreId | String | The unique identifier of the store associated with the updated cart. |
| Customer | String | The details of the customer linked to the updated cart. |
| CampaignId | String | The Id of the marketing campaign tied to the updated cart. |
| CheckoutUrl | String | The current checkout URL for the updated cart. |
| CurrencyCode | String | The three-letter ISO 4217 currency code used for the cart's financial values. |
| OrderTotal | Decimal | The total monetary value of the cart after the update, representing all line items before taxes. |
| TaxTotal | Decimal | The total tax applied to the cart after the update. |