用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
Person Group - Update a Person Group 更新现有的人员组的显示name和userData。没有出现在请求主体中的属性不会被更新。 Http Method `PATCH` Request URL `https://api.cognitive.azure.cn/face/v1.0/persongroups/{personGroupId} ` Request parameters | 参数名|参数类型 |描述 | | --- | --- | --- | | personGroupId |string | 要更新的person group的personGroupId| Request headers | 请求头 |类型 |描述 | | --- | --- | --- | | Content-Type (optional) |string |Media type of the body sent to the API. | | Ocp-Apim-Subscription-Key | string | Subscription key which provides access to this API. Found in your Cognitive Services accounts. | 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 | message| | --- | --- | | BadArgument | Name过长 | | BadArgument | userData过长 | | BadArgument | 错误的或无法解析的json body | ~~~ { "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 404 | Error Code | Error Message Description | | --- | --- | | PersonGroupNotFound | PersonGroupID无效。有效格式应该是由数字组成的字符串,英文字母小写,' - ','_',不超过64个字符 | | PersonGroupNotFound | 找不到PersonGroup| ~~~ { "error":{ "code":"PersonGroupNotFound", "message":"Person group 'sample_group' is not found." } } ~~~ Response 409 | Error Code | Error Message Description | | --- | --- | | PersonGroupTrainingNotFinished | 该PersonGroup仍在接受培训。训练完成后再试 | | ConcurrentOperationConflict | 资源并发操作冲突| ~~~ { "error":{ "code":"PersonGroupTrainingNotFinished", "message":"Person group 'sample_group' is under training." } } ~~~ 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." } } ~~~