For the complete documentation index, see llms.txt. This page is also available as Markdown.

extractionFinish

Extraction completed successfully.

Details

The VideoID component has successfully finished its extraction.

Event: extractionFinish

Type: CustomEvent<VideoIdResult>

Syntax

videoId.addEventListener('extractionFinish', onExtractionFinish);

Received object

detail: {
    faceImage: {
        data: string;
        width: number;
        height: number;
        imageFormat: string;
    },
    faceImageTokenized: string,
    voiceIndication: any,
    documentImages: {
        frontDocument: string,
        faceImage: string,
        backDocument: string,
    },
    personalData: PersonalData,
    faceRawResult: SelphiExtractionFinishDetail,
    documentRawResult: SelphIDExtractionFinishDetail,
    operationId: string,
}

Description

The capture and extraction process has finished successfully and the data can now be processed as needed.


Example

Last updated