你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Person Group Operations - Get Person Group Person
检索人员的姓名和 userData,以及表示已注册人员人脸功能(s)的持久 faceId。
GET {endpoint}/face/{apiVersion}/persongroups/{personGroupId}/persons/{personId}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
api
|
path | True |
string |
API 版本 |
endpoint
|
path | True |
string uri |
支持的认知服务终结点(协议和主机名,例如:https://{resource-name}.cognitiveservices.azure.com)。 |
person
|
path | True |
string |
容器的 ID。 正则表达式模式: |
person
|
path | True |
string uuid |
人员的 ID。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
成功的呼叫返回人员的信息。 |
|
Other Status Codes |
意外的错误响应。 标头 x-ms-error-code: string |
安全性
Ocp-Apim-Subscription-Key
Azure AI 人脸订阅的密钥。
类型:
apiKey
在:
header
AADToken
Azure Active Directory OAuth2 流
类型:
oauth2
流向:
accessCode
授权 URL:
https://api.example.com/oauth2/authorize
令牌 URL:
https://api.example.com/oauth2/token
作用域
名称 | 说明 |
---|---|
https://cognitiveservices.azure.com/.default |
示例
Get Person from PersonGroup
示例请求
GET {endpoint}/face/v1.2-preview.1/persongroups/your_person_group_id/persons/25985303-c537-4467-b41d-bdb45cd95ca1
示例响应
{
"personId": "25985303-c537-4467-b41d-bdb45cd95ca1",
"name": "your_person_group_person_name",
"userData": "your_user_data",
"persistedFaceIds": [
"43897a75-8d6f-42cf-885e-74832febb055"
]
}
定义
名称 | 说明 |
---|---|
Face |
错误对象。 有关人脸服务返回的错误代码和消息的综合详细信息,请参阅以下链接:https://aka.ms/face-error-codes-and-messages。 |
Face |
包含错误详细信息的响应。 |
Person |
指定人员组中的人员。 若要向此人添加人脸,请调用“添加大型人员组人脸”。 |
FaceError
错误对象。 有关人脸服务返回的错误代码和消息的综合详细信息,请参阅以下链接:https://aka.ms/face-error-codes-and-messages。
名称 | 类型 | 说明 |
---|---|---|
code |
string |
服务器定义的错误代码集之一。 |
message |
string |
错误的人工可读表示形式。 |
FaceErrorResponse
包含错误详细信息的响应。
名称 | 类型 | 说明 |
---|---|---|
error |
错误对象。 |
PersonGroupPerson
指定人员组中的人员。 若要向此人添加人脸,请调用“添加大型人员组人脸”。
名称 | 类型 | 说明 |
---|---|---|
name |
string |
用户定义的名称,最大长度为 128。 |
persistedFaceIds |
string[] |
人员中已注册人脸的面部 ID。 |
personId |
string |
人员的 ID。 |
userData |
string |
可选用户定义数据。 长度不应超过 16K。 |