Checkout API allows you to create URLs that open a shopping cart and fill it with products and delivery details. Use it for promotions or sharing pre-filled carts with customers. The whole process happens in a JavaScript file and results in a shopping cart URL that you can share with customers or post on social media.
Pre-requirements
Your website must load the following files below the store widget. Both of them are required for the feature to work:
You need to create a JSON with cart details, convert it to a string, and then encode it to URI format. The cart structure used in this method matches the one from REST API and cart management methods.
Only the products field is required for the method to work.
Once you have a variable with cart JSON, use JSON.stringify() method to convert it to a string, then encode it with the encodeURIComponent() method.
If you use a Wix website, you need an additional encoding to base64 format with btoa() method before using encodeURIComponent().
With the cart encoded to a cartCode variable, you can compose a link that opens a shopping cart and fills it with products and address details.
Code example
var cartPageLink = "https://mywebsite.com/store#!/~/cart/create=";
var cartItems = [{
"id": 66821181, // ID of the product in Ecwid
"quantity": 3, // Quantity of products to add
"options": { // Specify product options
"Color": "White",
"Size":"11oz"
}
}, {
"id": 66722581,
"quantity": 5
}];
var cart = {
"gotoCheckout": true, // go to next checkout step right away (after 'Cart' page)
"products": cartItems, // products to add to cart
"profile": {
"address": { // Shipping address details
"name": "john smith",
"companyName": "general motors",
"street": "5th Ave",
"city": "New York",
"countryCode": "US",
"postalCode": "10002",
"stateOrProvinceCode": "NY",
"phone": "+1 234 235 22 12"
},
"billingAddress": { // Billing address details
"countryCode": "US",
"stateOrProvinceCode": "AL",
},
"email": "test@test.com", // Customer email
"orderComments": "Comments!" // Order comments
}
}
cart = JSON.stringify(cart);
cartCode = encodeURIComponent(cart);
console.log(cartCode);
// prints the resulting string used for creating the cart
//
// %7B%22gotoCheckout%22%3Atrue%2C%22products%22%3A%5B%7B%22id%22%3A66821181%2C%22quantity%22%3A3%2C%22options%22%3A%7B%22Color%22%3A%22White%22%2C%22Size%22%3A%2211oz%22%7D%7D%2C%7B%22id%22%3A66722581%2C%22quantity%22%3A5%7D%5D%2C%22profile%22%3A%7B%22address%22%3A%7B%22name%22%3A%22john%20smith%22%2C%22companyName%22%3A%22general%20motors%22%2C%22street%22%3A%225th%20Ave%22%2C%22city%22%3A%22New%20York%22%2C%22countryCode%22%3A%22US%22%2C%22postalCode%22%3A%2210002%22%2C%22stateOrProvinceCode%22%3A%22NY%22%2C%22phone%22%3A%22%2B1%20234%20235%2022%2012%22%7D%2C%22billingAddress%22%3A%7B%22countryCode%22%3A%22US%22%2C%22stateOrProvinceCode%22%3A%22AL%22%7D%2C%22email%22%3A%22test%40test.com%22%2C%22orderComments%22%3A%22Comments!%22%7D%7D
//
finalLink = cartPageLink+cartCode
console.log(finalLink);
// prints a completed link that you can share with customers