From Bright Pattern Documentation
Jump to: navigation, search
(Created page with "<translate> = setRescheduleWindow = Allows you to reschedule outbound dialing retry time to be within a specific timeframe with the option to specify a time zone. The resched...")
 
(Updated via BpDeleteTranslateTags script)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<translate>
+
 
 
= setRescheduleWindow =
 
= setRescheduleWindow =
 
Allows you to reschedule outbound dialing retry time to be within a specific timeframe with the option to specify a time zone.
 
Allows you to reschedule outbound dialing retry time to be within a specific timeframe with the option to specify a time zone.
Line 24: Line 24:
 
|-
 
|-
 
| fromTime
 
| fromTime
| JavaScript date object
+
| String
 
| Required
 
| Required
| The starting time of the reschedule window
+
| The start of the reschedule timeframe in “YYYY-MM-DD HH24:MM:SS” format
| "08:00"
+
| "2019-09-12 15:30:00"
 
|-
 
|-
 
| untilTime
 
| untilTime
| JavaScript date object
+
| String
 
| Required
 
| Required
| The ending time of the reschedule window
+
| The end of the reschedule timeframe in “YYYY-MM-DD HH24:MM:SS” format (must be after the starting time)
| "12:00"
+
| "2019-09-13 15:30:00"
 
|-
 
|-
 
| timezoneName
 
| timezoneName
Line 45: Line 45:
 
== Response ==
 
== Response ==
 
Empty. In response to the request, the outbound dialing retry time is scheduled for the specified time window.
 
Empty. In response to the request, the outbound dialing retry time is scheduled for the specified time window.
 
 
 
 
 
</translate>
 

Latest revision as of 04:02, 29 May 2024

• 5.19 • 5.3 • 5.8


setRescheduleWindow

Allows you to reschedule outbound dialing retry time to be within a specific timeframe with the option to specify a time zone.

The reschedule window will only affect outbound campaigns when a non-final disposition is selected. The data is retained in Agent Desktop until changed or the interaction is completed.

Request

Syntax

setRescheduleWindow(numberToDial, fromTime, untilTime, timezoneName)

Parameters

Parameter Data Type Required/Optional Description Example
numberToDial String Required The phone number to dial "11234567"
fromTime String Required The start of the reschedule timeframe in “YYYY-MM-DD HH24:MM:SS” format "2019-09-12 15:30:00"
untilTime String Required The end of the reschedule timeframe in “YYYY-MM-DD HH24:MM:SS” format (must be after the starting time) "2019-09-13 15:30:00"
timezoneName String Optional The name of the timezone; if omitted, the timezone will be assumed to be the record’s detected timezone “America/Los_Angeles”

Response

Empty. In response to the request, the outbound dialing retry time is scheduled for the specified time window.

< Previous | Next >