Discounts calculated on your server
Last updated
Was this helpful?
Last updated
Was this helpful?
Server-calculated discounts give you full control over your store's discounts. However, you need to code all logic for such discounts on a self-hosted endpoint called discountUrl
.
Every time cart details are changed, Ecwid sends cart data as a POST request with JSON body to discountUrl
and waits for the response with the discount details. Your app must deliver the response in the 5-second window. Otherwise, Ecwid allows customers to proceed without the discount.
When calculating discounts, you can refer to Ecwid's flow for calculating the order total which depends on the gross/net prices in the order:
Order subtotal
Coupon discount
Handling fee
Discounts
Shipping
Taxes
As a developer, you must develop a self-hosted endpoint that receives POST requests from your Ecwid store and responds with discounts.
Upon receiving a discount request, parse the JSON body to get all the required details about the cart. Use the example and fields breakdown below:
Request contains a JSON object with the following fields:
storeId
number
Ecwid store ID.
merchantAppSettings
json
Merchant settings for your integration set up by your code.
cart
All available cart details.
lang
string
Customer's storefront language (e.g. en
).
Id
string
Unique order ID.
subtotal
number
Cost of all products in the order (item's price
x quantity
) before any cost modifiers such as discounts, taxes, fees, etc. are applied.
string
Customer's email address.
paymentMethod
string
Name of the payment method customer chosen at the checkout.
ipAddress
string
Customer's IP address detected at the checkout.
paymentStatus
string
fulfillmentStatus
string
refererUrl
string
URL of the page when order was placed without page slugs (hash #
part).
orderComments
string
Order comments, left by a customer at the checkout.
volumeDiscount
number
Sum of applied advanced discounts (promotions) based on subtotal. Included in the discount
field.
membershipBasedDiscount
number
Sum of applied advanced discounts (promotions) based on customer group. Included in the discount
field.
totalAndMembershipBasedDiscount
number
Sum of applied advanced discounts (promotions) based on both subtotal and customer group. Included in the discount
field.
discount
number
Sum of all applied advanced discounts. Does not include discount coupons.
Total order discount is the sum of thecouponDiscount
and discount
fields.
couponDiscount
number
Discount value from applied discount coupon, e.g. 10
.
Total order discount is the sum of thecouponDiscount
and discount
fields.
discountInfo
Detailed information about applied advanced discounts (promotions).
discountCoupon
Detailed information about applied discount coupons (promotions).
customerId
number
Unique internal ID assigned to the customer.
customerGroup
string
customerGroupId
number
ID of the group the customer belongs to.
items
Detailed information about products in the order.
shippingAddress
Details about the shipping address entered at the checkout by the customer.
originAddress
Store address from where the shipping starts.
predictedPackages
Ecwid-calculated details about one package fit to ship all items.
handlingFee
Details about fees applied to order.
extraFields
Names and values of custom checkout fields applied to the order.
productId
number
Internal product ID. Can be used to find full product details with the GET
/products
request.
combinationId
number
categoryId
number
ID of the category this product belongs to or was added from.
Returns -1
if the product was added to the cart via the Buy Now button.
price
number
Price of product in the order with all price modifier applied.
productPrice
number
Basic product price without any modifiers: options markups, discounts, taxes, fees.
priceInProductList
number
Product price displayed in a storefront. May differ from the price value when the product has options and variations and the default variation's price is different from the base product price. Does not include taxes
weight
number
Weight of the product.
name
string
Name of the product.
sku
string
Product SKU. If the chosen options match a variation, this will be a variation SKU.
amount
number
Quantity of the product in the cart.
nameTranslated
Available translations for the product name.
isShippingRequired
boolean
Defines if the product requires shipping.
fixedShippingRateOnly
boolean
Defines if the product has a unique fixed shipping rate.
If true
, shipping costs won't calculate for the product and fixedShippingRate
value will be used instead.
fixedShippingRate
number
Fixed shipping costs for the product.
Affects shipping costs only if fixedShippingRateOnly
is true
.
selectedOptions
Product options values selected by the customer at the checkout.
imageUrl
string
Link to the main product image.
files
Details about downloadable files attached to the product.
dimensions
Details about product dimensions used for shipping costs calculations.
discounts
Advanced discounts (promotions) applied to the specific product in the order.
isCustomerSetPrice
boolean
selectedPrice
object selectedPrice > value
Example with the PWYW price set to 100:
"selectedPrice": { "value": 100 }
attributes
name
string
Name of the product attribute.
value
string
Attribute value.
id
number
Internal unique file ID.
name
string
File name visible to the customer.
size
number
File size in bytes (64-bit integer).
url
string
File download link sent to the customer after the order was paid.
name
string
Name of the product option.
nameTranslated
Available translations for product option name.
type
string
Type of the product option that defines its functionality.
One of:
CHOICE -
Dropdown, radio button, or size. Allows selecting only one value from the list.
CHOICES -
Checkbox. Allows selecting multiple values.
TEXT -
Text input or area.
DATE -
Datetime selector.
FILES -
Upload file option.
value
string
Selected/entered value for the option as string
.
For CHOICES
type, provides a string with all selected values separated by a comma.
valueTranslated
Available translations for the product option value.
valuesArray
array
Selected/entered value for the option as array
.
For the CHOICES
type, provides an array with all selected values.
valuesArrayTranslated
Available translations for the product options values array.
files
Detailed information about files attached to the selected option.
Available only if the option type is FILES.
selections
Details of selected product options.
If sent in "Update order" request, other fields will be recalculated based on information from selections
.
selectionTitle
string
Name of the selected option value.
selectionModifier
number
Price modifier of the selected option value.
Value can be negative, for example, -10
if it decreases the product price.
selectionModifierType
string
Price modifier type.
One of:
PERCENT
- Price modifier applies as a percent from the product price.
ABSOLUTE
- Price modifier applies as a flat value.
length
number
Length of a product
width
number
Width of a product
height
number
Height of a product
discountInfo
Details about advanced discounts (promotions) applied to the product.
total
number
Sum of advanced discounts (promotions) applied to the order.
value
number
Discount value.
type
string
Discount type.
One of:
PERCENT
- Price modifier applies as a percent from the product price.
ABS
- Price modifier applies as a flat value.
base
string
Discount base.
One of:
SUBTOTAL
- Discount is based on order subtotal.
ITEM
- Discount is only applied to certain products in the order.
SHIPPING
- Discount is only applied to order shipping costs.
ON_MEMBERSHIP
- Discount is only applied if customer belongs to a certain customer group.
ON_TOTAL_AND_MEMBERSHIP
- Discount is applied to
CUSTOM
- Discount is created by an app with a custom logic.
orderTotal
number
Minimum order subtotal value for the advanced discount to apply.
description
string
Description the store owner added for the advanced discount.
appliesToItems
array of numbers
List of product IDs advanced discount apply to. For example, [123456, 234567]
.
If specified, the discount can't apply to all other products.
id
number
Internal discount coupon ID.
name
string
Name of the discount coupon visible in Ecwid admin.
code
string
Discount coupon code.
discountType
string
Discount type.
One of:
ABS
PERCENT
SHIPPING
ABS_AND_SHIPPING
PERCENT_AND_SHIPPING
status
string
Discount coupon state.
One of:
ACTIVE
PAUSED
EXPIRED
USEDUP
discount
number
Discount value applied to the order total.
launchDate
string
The date of coupon launch, for example, 2014-06-06 08:00:00 +0000
.
expirationDate
string
Coupon expiration date, for example, 2014-06-06 08:00:00 +0000
.
totalLimit
number
The minimum order subtotal the coupon applies to.
usesLimit
string
Number of uses limitation: UNLIMITED
, ONCEPERCUSTOMER
, SINGLE
applicationLimit
string
Application limit for discount coupons.
One of:
UNLIMITED
NEW_CUSTOMER_ONLY
REPEAT_CUSTOMER_ONLY
creationDate
string
Discount coupon creation date.
updateDate
string
Date of the last discount coupon update.
orderCount
number
Amount of orders where the discount coupon was used previously.
catalogLimit
Products and categories the coupon can be applied to
products
array of numbers
List of product IDs the coupon can be applied to.
categories
array of numbers
List of category IDs the coupon can be applied to.
name
string
Handling fee name set by store admin, for example, Wrapping
.
value
number
Handling fee flat value.
description
string
Handling fee's description for customers.
ecwid_order_delivery_time_interval_start
string
Start of the delivery date/datetime interval.
ecwid_order_delivery_time_interval_end
string
End of the delivery date/datetime interval.
ecwid_order_delivery_time_display_format
string
Format of the delivery date chosen.
One of:
DATE
DATETIME
id
string
Internal ID defined for the checkout extra field.
value
string
Extra field value. Length cannot exceed 255 characters.
customerInputType
string
One of: ""
,"TEXT"
, "SELECT"
, "DATETIME"
title
string
Extra field title visible at the checkout.
orderDetailsDisplaySection
string
Defines a place where the field is visible to the store admin on the order details page.
One of:
shipping_info
billing_info
customer_info
order_comments
Empty if the field is hidden.
orderBy
string
Extra field position. Use it to sort fields within the same orderDetailsDisplaySection
height
number
Height of a predicted package
width
number
Width of a predicted package
length
number
Length of a predicted package
weight
number
Total weight of a predicted package
declaredValue
number
Declared value of a predicted package (subtotal of items in package)
street
string
Customer's street
city
string
Customer's city
countryCode
string
Customer's country code in Ecwid
countryName
string
Customer's country name in Ecwid
postalCode
string
Customer's postal code
stateOrProvinceCode
string
Customer's state or province code in Ecwid
stateOrProvinceName
string
Customer's state or province name in Ecwid
street
string
Customer's street
city
string
Customer's city
countryCode
string
Customer's country code in Ecwid
postalCode
string
Customer's postal code
stateOrProvinceCode
string
Customer's state or province code in Ecwid
Object with text field translations in the "lang": "text"
format, where the "lang"
is an ISO 639-1 language code. For example:
Translations are available for all active store languages. Only the default language translations are returned if no other translations are provided for the field. Find active store languages with GET
/profile
request > languages
> enabledLanguages
.
With the cart details, you can calculate discounts using your own logic and conditions. Ecwid doesn't have access to this part of discount processing.
However, your response must meet API requirements. Discount details must be sent as a response to the initial request in a JSON format in 5 seconds or less.
Response must contain a JSON object with the following fields:
value
number
Discount amount. Required
type
number
Discount type. One of:
ABSOLUTE
PERCENT
If not specified, discount is applied as ABSOLUTE
.
description
string
Discount description displayed to the customer at the checkout and later in order receipts.
appliesToProducts
array of numbers
Limit discount application to specific products by their IDs.
If it's empty or not specified, the discount will be evenly spread between all products in the cart.
Check the store settings with the > pricesIncludeTax
field. If it's false
, modifications to the order total are calculated in the following order:
Check the store settings with the > pricesIncludeTax
field. If it's true
, modifications to the order total are calculated in the following order:
Make sure your app has the customize_cart_calculation
access scope and discountUrl
endpoint.
object
Order payment status. Supported values: AWAITING_PAYMENT
, PAID
, CANCELLED
, REFUNDED
, PARTIALLY_REFUNDED
, INCOMPLETE
, CUSTOM_PAYMENT_STATUS_1
, CUSTOM_PAYMENT_STATUS_2
, CUSTOM_PAYMENT_STATUS_3
.
Read more about order statuses in .
Order fulfillment status. Supported values: AWAITING_PROCESSING
, PROCESSING
, SHIPPED
, DELIVERED
, WILL_NOT_DELIVER
, RETURNED
, READY_FOR_PICKUP
, OUT_FOR_DELIVERY
, CUSTOM_FULFILLMENT_STATUS_1
, CUSTOM_FULFILLMENT_STATUS_2
, CUSTOM_FULFILLMENT_STATUS_3
.
Read more about order statuses in .
array
object
Name of the group the customer belongs to (if any). Read mroe about .
array
object
object
object
object
object
ID of a product variation whos options mathes with values chosen by the customer at the checkout. Read more on product variations in
object
array
array of objects
object
array
If true
, customer set a custom product price using the "" feature.
In this case, both the product price
and selectedPrice
-> value
fields contain the price set by a customer.
If false
, customer didn't choose the custom price. Therefore, the selectedPrice
-> value
field will be absent and the price
field contains default product price set by the store owner.
If isCustomerSetPrice
is true
, this field contains the "" price set by a customer at the checkout.
array of objects
Details about product attributes. Read more on product attributes in .
object
object
object
array of objects
array of objects
array of objects
object