Checkouts
spiffy.on('ready', function () {
// find or create an instance of this checkout
spiffy.checkout("https://yourcompany.spiffy.co/checkout/test-checkout")
})Updating Settings
spiffy.on('ready', function () {
// find or create an instance of this checkout
spiffy.checkout("https://yourcompany.spiffy.co/checkout/test-checkout", {
// set customer info
customer: {
email: '[email protected]',
name_first: 'Jon',
name_last: 'Snow',
}
})
})Last updated