GET OFF HOURS
Query off hours settings by off hours ID
get
https://api.eyelevel.ai/v1/partner
/offhours/:apiKey/:hoursId
QUERY
{
"offhoursSetting": {
"id": "STRING IDENTIFIER",
"hoursId": INTEGER IDENTIFIER,
"name": "STRING",
"settings": [
{
"active": BOOLEAN,
"day": "ENUMERATED STRING",
"end": "TIME STRING",
"start": "TIME STRING"
}
],
"timezone": "IANA TIME ZONE"
}
}
The unique identifier for the chat flow associated with the off hours setting. This chat flow will run during the time periods defined as active.
The unique integer identifier for the off hours setting.
The human readable name for the off hours setting.
An array of SETTINGS objects that define when the hours settings are active.
Defines whether the hours settings are active for the given day.
The day of week that the setting applies to.
The time of day when the chat flow associated with the off hours setting will no longer be active. The string is formatted in 24 hour time, including seconds.
OPTIONAL - StringValidation: Must be a properly formatted time string
The time of day when the chat flow associated with the off hours setting will become active. The string is formatted in 24 hour time, including seconds.
The timezone for the off hours settings. The timezone is provided in IANA format.
Last modified 2yr ago