Variable createRecoverAccountLink
createRecoverAccountLink: (
__namedParameters: {
email: string;
tenantId: string;
userContext?: Record<string, any>;
userId: string;
},
) => Promise<
| GenerateRecoverAccountTokenErrorResponse
| { link: string; status: string },
> = Wrapper.createRecoverAccountLink
Type declaration
- (
__namedParameters: {
email: string;
tenantId: string;
userContext?: Record<string, any>;
userId: string;
},
): Promise<
| GenerateRecoverAccountTokenErrorResponse
| { link: string; status: string },
> Parameters
- __namedParameters: {
email: string;
tenantId: string;
userContext?: Record<string, any>;
userId: string;
}
Returns Promise<
| GenerateRecoverAccountTokenErrorResponse
| { link: string; status: string },
>