A search filter that can be applied if the "match+search" mode is enabled. May include limit, threshold, group_ids. If the group_ids are specified, the search is performed only in these groups. Find more information in the <a href="https://dev.regulaforensics.com/FaceSDK-web-openapi/#tag/search/operation/search\" target="_blank">OpenAPI documentation.

FaceApiSearch

interface FaceApiSearch {
    group_ids?: number[];
    limit?: number;
    threshold?: number;
}

Properties

group_ids?: number[]

The groups where to conduct the search.

FaceApiSearch

limit?: number

The maximum number of results to be returned.

FaceApiSearch

threshold?: number

The similarity threshold.

FaceApiSearch