Update User Config
| connect_update_user_config | R Documentation |
Updates the configuration settings for the specified user, including per-channel auto-accept and after contact work (ACW) timeout settings¶
Description¶
Updates the configuration settings for the specified user, including per-channel auto-accept and after contact work (ACW) timeout settings.
This operation replaces the UpdateUserPhoneConfig API. While UpdateUserPhoneConfig applies the same ACW timeout to all channels, UpdateUserConfig allows you to set different auto-accept and ACW timeout values for each channel type.
Usage¶
connect_update_user_config(AutoAcceptConfigs, AfterContactWorkConfigs,
PhoneNumberConfigs, PersistentConnectionConfigs,
VoiceEnhancementConfigs, UserId, InstanceId)
Arguments¶
AutoAcceptConfigs |
The list of auto-accept configuration settings for each channel. When auto-accept is enabled for a channel, available agents are automatically connected to contacts from that channel without needing to manually accept. Auto-accept connects agents to contacts in less than one second. |
AfterContactWorkConfigs |
The list of after contact work (ACW) timeout configuration settings for each channel. ACW timeout specifies how many seconds agents have for after contact work, such as entering notes about the contact. The minimum setting is 1 second, and the maximum is 2,000,000 seconds (24 days). Enter 0 for an indefinite amount of time, meaning agents must manually choose to end ACW. |
PhoneNumberConfigs |
The list of phone number configuration settings for each channel. |
PersistentConnectionConfigs |
The list of persistent connection configuration settings for each channel. |
VoiceEnhancementConfigs |
The list of voice enhancement configuration settings for each channel. |
UserId |
[required] The identifier of the user account. |
InstanceId |
[required] The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
Value¶
An empty list.
Request syntax¶
svc$update_user_config(
AutoAcceptConfigs = list(
list(
Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL",
AutoAccept = TRUE|FALSE,
AgentFirstCallbackAutoAccept = TRUE|FALSE
)
),
AfterContactWorkConfigs = list(
list(
Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL",
AfterContactWorkConfig = list(
AfterContactWorkTimeLimit = 123
),
AgentFirstCallbackAfterContactWorkConfig = list(
AfterContactWorkTimeLimit = 123
)
)
),
PhoneNumberConfigs = list(
list(
Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL",
PhoneType = "SOFT_PHONE"|"DESK_PHONE",
PhoneNumber = "string"
)
),
PersistentConnectionConfigs = list(
list(
Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL",
PersistentConnection = TRUE|FALSE
)
),
VoiceEnhancementConfigs = list(
list(
Channel = "VOICE"|"CHAT"|"TASK"|"EMAIL",
VoiceEnhancementMode = "VOICE_ISOLATION"|"NOISE_SUPPRESSION"|"NONE"
)
),
UserId = "string",
InstanceId = "string"
)