Escalation Schedule
Overview
Before the chat takes action on an escalation request, the system looks at the following three factors in chronological order:
On/Off Switch- Administrators can manually turn the Live Agent Engine on/off for their company at any time, regardless of the predesignated business schedule or agent availability.

Escalation Schedule- Administrators can program escalation to automatically turn on during certain times throughout the week. For example, Monday-Friday, 9 am - 5 pm. Note that the escalation schedule can be turned off entirely so the system only checks the on/off toggle and agent availability.
Agent Availability- If the switch is toggled on and you are working within scheduled escalation hours, the system will look at agent availability. If no agents within a specific team are marked online, the system will assume that there are no agents available and will not escalate the conversation.
Adjust Your Escalation Schedule
The Escalation Schedule is the setting to control the predefined dates and times that conversations should be escalated to a live agent. Sometimes, you may need to turn this on or off outside of the hours you initially set. To do so, administrators with content editing access can follow the steps below:
Login to the Satisfi Labs Dashboard
Navigate to Studio -> NLP Manager -> Responses
Change the dropdown next to the search bar to "Response Name"
Search for the following response name: live_person
Select the response name that mentions the schedule: live_person_schedule, live_person_[team name]_schedule
Select Edit and make the appropriate changes (reference the examples below)
Publish the response
Are you getting an error when publishing? Note there should not be a comma placed after the final range of the schedule.

Examples
1. Recurring Days of the Week
Set specific days of the week + hours as shown below. Please note that there should not be a comma placed after the final range of the schedule.
#JSON
[
{ "inbox_id":"default",
"timezone":"America/New_York",
"sun":["07:00 AM","5:00 PM"],
"mon":["07:00 AM","5:00 PM"],
"tue":["07:00 AM","5:00 PM"],
"wed":["07:00 AM","5:00 PM"],
"thu":["07:00 AM","5:00 PM"],
"fri":["07:00 AM","5:00 PM"],
"sat":["07:00 AM","5:00 PM"]
}
]
JSON#
2. Weekly Hours + Specific Dates
You can also define specific days with different opening times, and you can omit weekdays that are closed like this:
#JSON
[
{ "inbox_id":"default",
"timezone":"America/New_York",
"mon":["07:00 AM","5:00 PM"],
"tue":["07:00 AM","5:00 PM"],
"wed":["07:00 AM","5:00 PM"],
"thu":["07:00 AM","5:00 PM"],
"fri":["07:00 AM","5:00 PM"],
"2024-11-28":["09:00 AM","10:00 PM"]
}
JSON#
3. Specific Dates
You can also omit weekly times altogether and only schedule specific times and dates:
#JSON
[
{ "inbox_id":"default",
"timezone":"America/New_York",
"2024-01-01":["09:00 AM","11:00 AM"],
"2024-01-01":["01:00 PM","05:00 PM"],
"2024-01-02":["09:00 AM","10:00 PM"],
"2024-01-03":["09:00 AM","10:00 PM"],
"2024-01-04":["09:00 AM","10:00 PM"]
}
]
JSON#
4. Days Off/Holidays
You can also schedule specific dates to be off by adding the specific date with 00:00:00 times:
#JSON
[
{ "inbox_id":"default",
"timezone":"America/New_York",
"mon":["07:00 AM","5:00 PM"],
"tue":["07:00 AM","5:00 PM"],
"wed":["07:00 AM","5:00 PM"],
"thu":["07:00 AM","5:00 PM"],
"fri":["07:00 AM","5:00 PM"],
"2024-01-01":["09:00 AM","10:00 PM"],
"2024-07-29": ["00:00:00","00:00:00"]
}
]
JSON#
Time Zone Codes
UTC............................... UTC
Eastern Time ..................... America/New_York
Central Time ..................... America/Chicago
Mountain Time .................... America/Denver
Mountain Time (no DST) ........... America/Phoenix
Pacific Time ..................... America/Los_Angeles
Alaska Time ...................... America/Anchorage
Hawaii-Aleutian .................. America/Adak
Hawaii-Aleutian Time (no DST) .... Pacific/Honolulu
London Time....................... Europe/London
Schedule FAQs
Last updated
Was this helpful?