onTaxGroupCreated( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Notes:

Triggered when a tax group is created.

Permissions
Manage eCommerce - all permissions
Manage Stores - all permissions
Manage Orders
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function onTaxGroupCreated(handler: function): void;
Method Parameters
handlerfunction

handler(event: TaxGroupCreatedEnvelope): void | Promise<void>

JavaScript
import { taxGroups } from "@wix/ecom"; taxGroups.onTaxGroupCreated((event) => { // handle your event here });
Did this help?