多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
Person Group - Create a Person Group 创建一个带有特定personGroupId,name和user-provided userData的新person group。 Person group是Face - Identify API最重要的参数之一。在特定的person group中识别出搜索者人脸 Http Method `PUT` Request URL `https://api.cognitive.azure.cn/face/v1.0/persongroups/{personGroupId} ` Request parameters | 参数名|参数类型 |描述 | | --- | --- | --- | | personGroupId |string | 用户提供personGroupId作为字符串。有效的字符串包括数字、小写英文字符、‘-’和‘_’。personGroupId最大长度是64| Request headers | 请求头 |类型 |描述 | | --- | --- | --- | | Content-Type (optional) |string |Media type of the body sent to the API. | | Ocp-Apim-Subscription-Key | string | 提供访问此API的订阅密钥。在您的认知服务帐户中找到. | Request body JSON fields in request body | Fields | Type | Description | | --- | --- | --- | | name | String | Person group显示名称。最大长度是128 | | userData (可选) | String | 附加到Person group的用户提供的数据。大小限制是16KB | Response 200 成功的调用返回一个空的响应体 Response 400 Error code and message returned in JSON | Error Code | Error Message Description | | --- | --- | | BadArgument |'name'太长了 | | BadArgument | 'userData'太长了 | | BadArgument | 错误和无法辨认的JSON | | BadArgument | Person group ID无效。有效格式应该是由数字组成的字符串,英文字母小写,' - ','_',不超过64个字符| ~~~ { "error":{ "code":"BadArgument", "message":"'name' is too long." } } ~~~ Response 401 | Error Code | Error Message Description | | --- | --- | | Unspecified | 无效的subscription Key 或user/plan 被冻结 | ~~~ { "error":{ "code": "Unspecified", "message": "Access denied due to invalid subscription key. Make sure you are subscribed to an API you are trying to call and provide the right key." } } ~~~ Response 403 ~~~ { "error":{ "statusCode": 403, "message": "Out of call volume quota. Quota will be replenished in 2.12 days." } } ~~~ Response 409 Error code and message returned in JSON | Error Code | Error Message Description | | --- | --- | | PersonGroupExists |Person group已经存在 | | ConcurrentOperationConflict | 当前资源运算有冲突 | ~~~ { "error":{ "code":"PersonGroupExists", "message":"Person group 'sample_group' already exists." } } ~~~ Response 415 不支持的媒体类型错误。只有“application / json”对这个API有效。 ~~~ { "error":{ "code":"BadArgument", "message":"Invalid Media Type" } } ~~~ Response 429 ~~~ { "error":{ "statusCode": 429, "message": "Rate limit is exceeded. Try again in 26 seconds." } } ~~~