Skip to content

Update Campaign Channel Subtype Config

connectcampaignservicev2_update_campaign_channel_subtype_config R Documentation

Updates the channel subtype config of a campaign

Description

Updates the channel subtype config of a campaign. This API is idempotent.

Usage

connectcampaignservicev2_update_campaign_channel_subtype_config(id,
  channelSubtypeConfig)

Arguments

id

[required]

channelSubtypeConfig

[required]

Value

An empty list.

Request syntax

svc$update_campaign_channel_subtype_config(
  id = "string",
  channelSubtypeConfig = list(
    telephony = list(
      capacity = 123.0,
      connectQueueId = "string",
      outboundMode = list(
        progressive = list(
          bandwidthAllocation = 123.0
        ),
        predictive = list(
          bandwidthAllocation = 123.0
        ),
        agentless = list()
      ),
      defaultOutboundConfig = list(
        connectContactFlowId = "string",
        connectSourcePhoneNumber = "string",
        answerMachineDetectionConfig = list(
          enableAnswerMachineDetection = TRUE|FALSE,
          awaitAnswerMachinePrompt = TRUE|FALSE
        )
      )
    ),
    sms = list(
      capacity = 123.0,
      outboundMode = list(
        agentless = list()
      ),
      defaultOutboundConfig = list(
        connectSourcePhoneNumberArn = "string",
        wisdomTemplateArn = "string"
      )
    ),
    email = list(
      capacity = 123.0,
      outboundMode = list(
        agentless = list()
      ),
      defaultOutboundConfig = list(
        connectSourceEmailAddress = "string",
        sourceEmailAddressDisplayName = "string",
        wisdomTemplateArn = "string"
      )
    )
  )
)