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¶
connectcampaignservicev2_update_campaign_communication_time(id,
communicationTimeConfig)
Arguments¶
id |
[required] Identifier representing a Campaign |
communicationTimeConfig |
[required] Campaign communication time config |
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"
),
localTimeZoneDetectionScope = "PRIMARY_ONLY"|"ALL_AVAILABLE"
),
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"
)
)
)
),
whatsApp = list(
openHours = list(
dailyHours = list(
list(
list(
startTime = "string",
endTime = "string"
)
)
)
),
restrictedPeriods = list(
restrictedPeriodList = list(
list(
name = "string",
startDate = "string",
endDate = "string"
)
)
)
)
)
)