MrShi
8 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export declare const apiName = "internal.auth.identifyByAssistantMail";
/**
 * 通过辅助邮箱核身 请求参数定义
 * @apiName internal.auth.identifyByAssistantMail
 */
export interface IInternalAuthIdentifyByAssistantMailParams {
    /** 手机号 例子"+86-xxxxxx" */
    mobile: string;
    /** 临时码,作为二次核身因子时必填 */
    tempCode?: string;
    /** "login | findPwd" , 目前支持登录与召回密码两种场景使用 */
    action: string;
    /** 用户绑定的辅助邮箱地址 */
    email?: string;
}
/**
 * 通过辅助邮箱核身 返回结果定义
 * @apiName internal.auth.identifyByAssistantMail
 */
export interface IInternalAuthIdentifyByAssistantMailResult {
    /** "0|2", 0标识完成身份验证,2标识需要使用其他因子再次核身 */
    status: string;
    /** 需要再次核身时必须返回,再次核身时使用 */
    tempCode: string;
}
/**
 * 通过辅助邮箱核身
 * @apiName internal.auth.identifyByAssistantMail
 * @supportVersion ios: 4.6.18 android: 4.6.18
 */
export declare function identifyByAssistantMail$(params: IInternalAuthIdentifyByAssistantMailParams): Promise<IInternalAuthIdentifyByAssistantMailResult>;
export default identifyByAssistantMail$;