onAccountCreated( )


Notes:

Triggered when a loyalty account is created.

Permissions
Manage Loyalty
Read Loyalty
Manage Restaurants - all permissions
Learn more about app permissions.
Method Declaration
Copy
function onAccountCreated(handler: function): void;
Method Parameters
handlerfunction

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

JavaScript
import { accounts } from "@wix/loyalty"; accounts.onAccountCreated((event) => { // handle your event here });
Did this help?