"New order is placed" event
Ecwid.OnOrderPlaced
Ecwid.OnOrderPlaced
This event allows tracking placed orders on the storefront and receiving order details in a callback function with an order
argument.
Code example:
order
callback argument
order
callback argumentitems
Details about products in order.
productsQuantity
number
Total quantity of products in order.
weight
number
Total order weight.
paymentMethod
string
Selected payment method name. undefined
if no method is selected.
shippingMethod
string
Selected shipping method name. undefined
if no method is selected.
shippingCarrierName
string
Selected shipping carrier name. undefined
if no method is selected.
total
number
Order total cost including subtotal, discounts, coupons, taxes, fees, and shipping.
totalWithoutTax
number
Order total without taxes.
subtotal
number
Order subtotal (product cost before shipping cost applied).
subtotalWithoutTax
number
Order subtotal without taxes.
tax
number
Order total tax.
couponName
string
Applied discount coupon name. undefined
if no discount coupon is applied.
couponDiscount
number
Value of coupon discount applied to order.
volumeDiscount
number
Value of discount applied to subtotal (doesn't include discount coupon).
customerGroupDiscount
number
Discount based on customer group.
discount
number
Total discount applied to order.
shipping
number
Order shipping cost.
shippingWithoutTax
number
Order shipping cost without taxes.
handlingFee
number
Order handling fee.
handlingFeeWithoutTax
number
Order handling fee without taxes.
shippingAndHandling
number
Sum of shipping
and handlingFee
fields.
billingPerson
Customer billing address.
shippingPerson
Customer shipping address.
affiliateId
string
Affiliate ID used in order.
orderNumber
number
Internal order ID. Use ID from vendorNumber
instead.
vendorNumber
string
Order ID. Matches order id
in REST API and customer emails.
date
string
Order creation datetime in UNIX timestamp, for example, "1484638550"
.
paymentStatus
string
Payment status of an order.
One of:
AWAITING_PAYMENT
PAID
CANCELLED
REFUNDED
PARTIALLY_REFUNDED
INCOMPLETE
CUSTOM_PAYMENT_STATUS_1
CUSTOM_PAYMENT_STATUS_2
CUSTOM_PAYMENT_STATUS_3
fulfillmentStatus
string
Fulfillment status of an order.
One of:
AWAITING_PROCESSING
PROCESSING
SHIPPED
DELIVERED
WILL_NOT_DELIVER
RETURNED
READY_FOR_PICKUP
CUSTOM_FULFILLMENT_STATUS_1
CUSTOM_FULFILLMENT_STATUS_2
CUSTOM_FULFILLMENT_STATUS_3
customer
Customer's email and name.
extraFields
Order extra field details.
items
items
quantity
number
Quantity of this product in order.
product
object product
Product details.
options
array
Selected product options.
product
product
id
Integer
Product ID.
name
String
Product name.
price
Integer
Product price.
shortDescription
String
Product description truncated to 120 characters.
sku
String
Product SKU.
url
String
Link to a product page.
weight
Integer
Product weight.
billingPerson
billingPerson
name
string
Customer's name.
phone
string
Customer's phone number.
companyName
string
Customer's company name.
street
string
Address: street.
city
string
Address: city.
countryName
string
Address: country name.
countryCode
string
Address: country code.
stateOrProvinceName
string
Address: state name.
stateOrProvinceCode
string
Address: state code.
postalCode
string
Address: zip code.
shippingPerson
shippingPerson
name
string
Customer's name.
phone
string
Customer's phone number.
companyName
string
Customer's company name.
street
string
Address: street.
city
string
Address: city.
countryName
string
Address: country name.
countryCode
string
Address: country code.
stateOrProvinceName
string
Address: state name.
stateOrProvinceCode
string
Address: state code.
postalCode
string
Address: zip code.
customer
customer
name
string
Customer's name.
string
Customer's email.
extraFields
extraFields
orderBy
number
Sorting position for order details page in Ecwid admin. Starts with 0
(highest position).
title
string
Extra field name.
orderDetailsDisplaySection
string
Section where the extra field is displayed.
type
string
Extra field type.
value
string
Extra field value.
Last updated
Was this helpful?