Deletes a checkout template.
If a checkout template is deleted and a customer attempts to create a checkout with that checkoutTemplateId
then
the customer will be redirected to the domain site.
function deleteCheckoutTemplate(checkoutTemplateId: string): Promise<void>;
ID of the checkout template to delete.
import { checkoutTemplates } from "@wix/ecom";
async function deleteCheckoutTemplate(checkoutTemplateId) {
const response =
await checkoutTemplates.deleteCheckoutTemplate(checkoutTemplateId);
}
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.