Update Campaign Communication Time
connectcampaignservicev2_update_campaign_communication_time | R Documentation |
Updates the communication time config for a campaign¶
Description¶
Updates the communication time config for a campaign. This API is idempotent.
Usage¶
Arguments¶
id
[required]
communicationTimeConfig
[required]
Value¶
An empty list.
Request syntax¶
svc$update_campaign_communication_time(
id = "string",
communicationTimeConfig = list(
localTimeZoneConfig = list(
defaultTimeZone = "string",
localTimeZoneDetection = list(
"ZIP_CODE"|"AREA_CODE"
)
),
telephony = list(
openHours = list(
dailyHours = list(
list(
list(
startTime = "string",
endTime = "string"
)
)
)
),
restrictedPeriods = list(
restrictedPeriodList = list(
list(
name = "string",
startDate = "string",
endDate = "string"
)
)
)
),
sms = list(
openHours = list(
dailyHours = list(
list(
list(
startTime = "string",
endTime = "string"
)
)
)
),
restrictedPeriods = list(
restrictedPeriodList = list(
list(
name = "string",
startDate = "string",
endDate = "string"
)
)
)
),
email = list(
openHours = list(
dailyHours = list(
list(
list(
startTime = "string",
endTime = "string"
)
)
)
),
restrictedPeriods = list(
restrictedPeriodList = list(
list(
name = "string",
startDate = "string",
endDate = "string"
)
)
)
)
)
)