confomat.create({
shopId: 123456, // your shopId goes here
addToBasketFunction: function (basketItem, callback) {
// return success to confomat
callback(true);

/*
* use the API of our basket service to add the basket item to the shopping basket
* learn more: https://developer.spreadshirt.net/display/API/Basket+Resources
*/
},
checkoutFunction: function () {
// redirect to your checkout
}
});