共用方式為


Person Directory Operations - Update Dynamic Person Group With Person Changes

更新現有動態人員群組的名稱或userData,並藉由新增或移除人員來管理其成員。
如果屬性不在要求本文中,屬性會保持不變。

PATCH {endpoint}/face/{apiVersion}/dynamicpersongroups/{dynamicPersonGroupId}

URI 參數

名稱 位於 必要 類型 Description
apiVersion
path True

string

API 版本

dynamicPersonGroupId
path True

string

動態人員群組的標識碼。

Regex 模式: ^[a-z0-9-_]+$

endpoint
path True

string

uri

支持的認知服務端點(通訊協定和主機名,例如:https://{resource-name}.cognitiveservices.azure.com)。

要求本文

名稱 類型 Description
addPersonIds

string[]

要新增的 Person Directory “Create Person” 所建立的 personId 陣列。

name

string

用戶定義的名稱,最大長度為128。

removePersonIds

string[]

要移除之 Person 目錄 「建立人員」所建立的personId陣列。

userData

string

選擇性的使用者定義數據。 長度不應超過 16K。

回應

名稱 類型 Description
202 Accepted

成功的呼叫會傳回空的回應本文。 服務已接受要求,且即將開始處理。 用戶端可以使用 『Operation-Location』 回應標頭中指定的 URL 來查詢作業狀態和結果。 URL 會在 48 小時內到期。 URL 提供人員目錄「取得動態人員群組參考」何時會傳回此要求中所做的變更的狀態。

標題

operation-Location: string

Other Status Codes

FaceErrorResponse

未預期的錯誤回應。

標題

x-ms-error-code: string

安全性

Ocp-Apim-Subscription-Key

Azure AI 臉部訂用帳戶的秘密密鑰。

類型: apiKey
位於: header

AADToken

Azure Active Directory OAuth2 流程

類型: oauth2
Flow: accessCode
授權 URL: https://api.example.com/oauth2/authorize
權杖 URL: https://api.example.com/oauth2/token

範圍

名稱 Description
https://cognitiveservices.azure.com/.default

範例

Update DynamicPersonGroup

範例要求

PATCH {endpoint}/face/v1.2-preview.1/dynamicpersongroups/your_dynamic_person_group_id

{
  "name": "your_dynamic_person_group_name",
  "userData": "your_user_data",
  "addPersonIds": [
    "85c0c630-c9c9-40f8-8a4e-f9ae4f926ea5"
  ],
  "removePersonIds": [
    "67f7e96d-823a-4318-9bf6-e9a2a2608899"
  ]
}

範例回覆

operation-Location: https://contoso.com/operationstatus

定義

名稱 Description
FaceError

error 物件。 如需臉部服務所傳回錯誤碼和訊息的完整詳細數據,請參閱下列連結:https://aka.ms/face-error-codes-and-messages

FaceErrorResponse

包含錯誤詳細數據的回應。

FaceError

error 物件。 如需臉部服務所傳回錯誤碼和訊息的完整詳細數據,請參閱下列連結:https://aka.ms/face-error-codes-and-messages

名稱 類型 Description
code

string

其中一組伺服器定義的錯誤碼。

message

string

錯誤的人類可讀取表示法。

FaceErrorResponse

包含錯誤詳細數據的回應。

名稱 類型 Description
error

FaceError

error 物件。