Update Cart Settings
PUThttps://useast.api.elasticpath.com/v2/settings/cart
You can modify the cart expiry settings to set it to any number of days up to 365. Any existing carts default to the expiry of 7 days. To update cart settings in Commerce Manager, see Updating Cart setting.
With update cart settings endpoint, you can:
- Enable or disable custom discounts by setting the
custom_discounts_enabled
field totrue
. This allows you to activate your custom discounts from external services. By default, this setting is determined by the cart settings configured for the store. - Enable or disable the use of rule promotions within the cart. You can apply this setting either at the store level using the update cart setting endpoint or individually to a specific cart using the update a cart endpoint.
note
You cannot use both custom discounts and rule promotions at the same time.
Errors
The following error is received if you enable a cart to use both custom discounts and rule promotions:
{
"status": 422,
"title": "Cannot use both discounts together",
"detail": "Only one discount setting can be set to true at a time."
}
Request
- application/json
Body
data object
Responses
- 200
- 400
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
{
"data": {
"type": "settings",
"cart_expiry_days": 25,
"discounts": {
"custom_discounts_enabled": false,
"use_rule_promotions": false
},
"snapshot_date": "2026-02-21T15:07:25Z"
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
- bad-request-error
Schema
errors Error[]required
{
"errors": [
{
"title": "string",
"status": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"title": "enum",
"source": "data.type",
"detail": "data.type must be one of the following: \"settings\""
}
]
}
Internal server error.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
errors Error[]required
{
"errors": [
{
"title": "string",
"status": "string",
"detail": "string"
}
]
}
Internal server error
{
"errors": [
{
"title": "Internal Server Error",
"status": "500",
"detail": "there was a problem processing your request"
}
]
}
Authorization: http
name: BearerTokentype: httpscheme: bearer
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X PUT 'https://useast.api.elasticpath.com/v2/settings/cart' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"data": {
"type": "settings",
"cart_expiry_days": 25,
"discounts": {
"custom_discounts_enabled": false,
"use_rule_promotions": false
},
"snapshot_date": "2026-02-21T15:07:25Z"
}
}'
ResponseClear