Package version:

interface GetLargeFaceLists {
    get(options?): StreamableMethod<GetLargeFaceLists200Response | GetLargeFaceListsDefaultResponse>;
}

Methods

Methods

  • To get face information inside largeFaceList use "Get Large Face List Face".

    Large Face Lists are stored in alphabetical order of largeFaceListId.

      • "start" parameter (string, optional) specifies an ID value from which returned entries will have larger IDs based on string comparison. Setting "start" to an empty value indicates that entries should be returned starting from the first item.
      • "top" parameter (int, optional) determines the maximum number of entries to be returned, with a limit of up to 1000 entries per call. To retrieve additional entries beyond this limit, specify "start" with the personId of the last entry returned in the current call.

    [!TIP]

    • For example, there are total 5 items with their IDs: "itemId1", ..., "itemId5".
      • "start=&top=" will return all 5 items.
      • "start=&top=2" will return "itemId1", "itemId2".
      • "start=itemId2&top=3" will return "itemId3", "itemId4", "itemId5".

    Parameters

    • Optional options: any

    Returns StreamableMethod<GetLargeFaceLists200Response | GetLargeFaceListsDefaultResponse>