interface SearchUsersRequest {
    CollectionId: undefined | string;
    FaceId?: string;
    MaxUsers?: number;
    UserId?: string;
    UserMatchThreshold?: number;
}

Hierarchy (view full)

Properties

CollectionId: undefined | string

The ID of an existing collection containing the UserID, used with a UserId or FaceId. If a FaceId is provided, UserId isn’t required to be present in the Collection.

FaceId?: string

ID for the existing face.

MaxUsers?: number

Maximum number of identities to return.

UserId?: string

ID for the existing User.

UserMatchThreshold?: number

Optional value that specifies the minimum confidence in the matched UserID to return. Default value of 80.