@portone/server-sdk
    Preparing search index...

    Type Alias IdentityVerificationClient

    type IdentityVerificationClient = {
        getIdentityVerification: (
            options: { identityVerificationId: string; storeId?: string },
        ) => Promise<IdentityVerification.IdentityVerification>;
        getIdentityVerifications: (
            options?: {
                page?: PageInput;
                sort?: IdentityVerificationSortInput;
                filter?: IdentityVerificationFilterInput;
            },
        ) => Promise<GetIdentityVerificationsResponse>;
        sendIdentityVerification: (
            options: {
                identityVerificationId: string;
                storeId?: string;
                channelKey: string;
                customer: SendIdentityVerificationBodyCustomer;
                customData?: string;
                bypass?: object;
                operator: IdentityVerificationOperator;
                method: IdentityVerificationMethod;
            },
        ) => Promise<SendIdentityVerificationResponse>;
        confirmIdentityVerification: (
            options: {
                identityVerificationId: string;
                storeId?: string;
                otp?: string;
            },
        ) => Promise<ConfirmIdentityVerificationResponse>;
        resendIdentityVerification: (
            options: { identityVerificationId: string; storeId?: string },
        ) => Promise<ResendIdentityVerificationResponse>;
    }
    Index

    Properties

    getIdentityVerification: (
        options: { identityVerificationId: string; storeId?: string },
    ) => Promise<IdentityVerification.IdentityVerification>

    본인인증 단건 조회

    주어진 아이디에 대응되는 본인인증 내역을 조회합니다.

    getIdentityVerifications: (
        options?: {
            page?: PageInput;
            sort?: IdentityVerificationSortInput;
            filter?: IdentityVerificationFilterInput;
        },
    ) => Promise<GetIdentityVerificationsResponse>

    본인인증 내역 다건 조회

    주어진 조건에 맞는 본인인증 내역들을 페이지 기반으로 조회합니다.

    sendIdentityVerification: (
        options: {
            identityVerificationId: string;
            storeId?: string;
            channelKey: string;
            customer: SendIdentityVerificationBodyCustomer;
            customData?: string;
            bypass?: object;
            operator: IdentityVerificationOperator;
            method: IdentityVerificationMethod;
        },
    ) => Promise<SendIdentityVerificationResponse>

    본인인증 요청 전송

    SMS 또는 APP 방식을 이용하여 본인인증 요청을 전송합니다.

    confirmIdentityVerification: (
        options: {
            identityVerificationId: string;
            storeId?: string;
            otp?: string;
        },
    ) => Promise<ConfirmIdentityVerificationResponse>

    본인인증 확인

    요청된 본인인증에 대한 확인을 진행합니다.

    resendIdentityVerification: (
        options: { identityVerificationId: string; storeId?: string },
    ) => Promise<ResendIdentityVerificationResponse>

    SMS 본인인증 요청 재전송

    SMS 본인인증 요청을 재전송합니다.