Person Directory Operations - Get Dynamic Person Group Persons
List all persons in the specified Dynamic Person Group.
Persons are stored in alphabetical order of personId created in Person Directory "Create Person".
-
- "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".
GET {endpoint}/face/{apiVersion}/dynamicpersongroups/{dynamicPersonGroupId}/persons
GET {endpoint}/face/{apiVersion}/dynamicpersongroups/{dynamicPersonGroupId}/persons?start={start}&top={top}
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
api
|
path | True |
string |
API Version |
dynamic
|
path | True |
string |
ID of the dynamic person group. Regex pattern: |
endpoint
|
path | True |
string uri |
Supported Cognitive Services endpoints (protocol and hostname, for example: https://{resource-name}.cognitiveservices.azure.com). |
start
|
query |
string |
List resources greater than the "start". It contains no more than 64 characters. Default is empty. |
|
top
|
query |
integer int32 |
The number of items to list, ranging in [1, 1000]. Default is 1000. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
A successful call returns an array of person information in the Person Directory. |
|
Other Status Codes |
An unexpected error response. Headers x-ms-error-code: string |
Security
Ocp-Apim-Subscription-Key
The secret key for your Azure AI Face subscription.
Type:
apiKey
In:
header
AADToken
The Azure Active Directory OAuth2 Flow
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://api.example.com/oauth2/authorize
Token URL:
https://api.example.com/oauth2/token
Scopes
Name | Description |
---|---|
https://cognitiveservices.azure.com/.default |
Examples
Get DynamicPersonGroup Persons
Sample request
GET {endpoint}/face/v1.2-preview.1/dynamicpersongroups/your_dynamic_person_group_id/persons?start=00000000-0000-0000-0000-000000000000&top=20
Sample response
{
"personIds": [
"1d44651f-fadb-41f5-8918-c30609964489",
"c1d3b745-2548-4abf-b057-a386c9bd52f1"
]
}
Definitions
Name | Description |
---|---|
Face |
The error object. For comprehensive details on error codes and messages returned by the Face Service, please refer to the following link: https://aka.ms/face-error-codes-and-messages. |
Face |
A response containing error details. |
List |
Response of list dynamic person group person. |
FaceError
The error object. For comprehensive details on error codes and messages returned by the Face Service, please refer to the following link: https://aka.ms/face-error-codes-and-messages.
Name | Type | Description |
---|---|---|
code |
string |
One of a server-defined set of error codes. |
message |
string |
A human-readable representation of the error. |
FaceErrorResponse
A response containing error details.
Name | Type | Description |
---|---|---|
error |
The error object. |
ListPersonResult
Response of list dynamic person group person.
Name | Type | Description |
---|---|---|
personIds |
string[] |
Array of PersonDirectory Person ids. |