Alokai
You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current

CustomerIdentity

Identity of an authenticated customer.

export interface CustomerIdentity {
	data: {
        email: string;
    };
	identity: "customer";
}

Properties

NameRequiredTypeDescription
dataRequired{ email: string; }
identityRequired"customer"

On this page