自動將聯絡人記錄與使用 _phone 索引鍵找到的一個設定檔關聯 - Amazon Connect

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

自動將聯絡人記錄與使用 _phone 索引鍵找到的一個設定檔關聯

您可以自動將聯絡人記錄與使用 _phone 索引鍵找到的一個設定檔關聯。

範例

在網域中,下列設定檔由建立 CreateProfileAPI:

{ "FirstName": "John", "LastName": "Doe", "PhoneNumber": "+11234567890" }

當使用默認CTR模板從 PhoneNumber +11234567890 接到呼叫時,除非代理已將聯繫人記錄與同一來電者手動關聯到上述配置文件,否則聯繫人記錄將不會自動與上述配置文件相關聯。如果沒有手動或自動關聯聯絡人記錄,客戶設定檔會建立一個推斷的設定檔,其中包含聯絡人記錄中的資訊。

要自動將上述配置文件與聯繫記錄相關聯,而無需手動代理介入,您可以使用 CTR-NoInferred 模板。當使用 CTR-NoInferred 範本從 PhoneNumber +11234567890 接收來電時,聯絡人記錄會使用設定檔金鑰自動與上述設定檔建立關聯。_phone

在兩種情況下,Customer Profiles 將不會自動使聯絡人記錄與設定檔關聯:

  • 如果使用 _phone 設定檔索引鍵找到多個設定檔,則客戶設定檔無法將聯絡人記錄與唯一的設定檔關聯,且此要求會被拒絕。

  • 如果 _phone 設定檔索引鍵找不到設定檔,則客戶設定檔將建立推斷的設定檔。

若要使用 CTR-NoInferred 範本取代預設CTR範本,請在上執行下列指令CLI:

aws customer-profiles put-profile-object-type --domain-name {domain} --object-type-name CTR --description "No inferred contact record profiles" --template-id CTR-NoInferred

若要還原為預設行為,請在上執行下列命令CLI:

aws customer-profiles put-profile-object-type --domain-name {domain} --object-type-name CTR --description "Revert to inferred contact record profiles" --template-id CTR