Version: 202607
Configure which discount types can be combined
PUT/openapi/2026-07/discounts/combine
Configure which discount types can be combined.
Request
- application/json
- Body
- Example
Bodyrequired
product: Can combine with product discountsorder: Can combine with order discountsshipping: Can combine with shipping discounts
idsstring[]required
Discount IDs
discount_combinesstring[]required
Other discount categories that can be combined:
{
"ids": [
"string"
],
"discount_combines": [
"string"
]
}
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
codestring
error code
messagestring
error message
data object
idsstring[]
IDs of discounts that were successfully updated
{
"code": "string",
"message": "string",
"data": {
"ids": [
"string"
]
}
}