💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
Face List - Delete a Face List 根据faceListId删除一个存在的face list,属于这个face list的face images 也会删除 Http Method `DELETE` Request URL `https://api.cognitive.azure.cn/face/v1.0/facelists/{faceListId}` Request parameters | 参数 |类型 |描述 | | --- | --- | --- | | faceListId | string | 规范字符串包括小写字母,数字,‘—’,‘_’,字符串最大长度是64 | Request headers | 请求头 |类型 |描述 | | --- | --- | --- | | Ocp-Apim-Subscription-Key | string | Subscription key which provides access to this API. Found in your Cognitive Services accounts. | Request body Response 200 请求成功返回空body. 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 | | --- | --- | | FaceListNotFound | Face list未定义 | | FaceListNotFound | 无效的Face list ID,合法的字符串包括小写字母,数字,‘—’,‘_’,字符串最大长度是64 | ~~~ { "error":{ "code":"FaceListNotFound", "message":"Face list 'sample_list' is not found." } } ~~~ Response 409 ~~~ { "error":{ "code": ConcurrentOperationConflict, "message": "There is a conflict operation on resource 'sample_group', please try later." } } ~~~ Response 429 ~~~ { "error":{ "statusCode": 429, "message": "Rate limit is exceeded. Try again in 26 seconds." } } ~~~