I have a snooze select button on my message attachment.
actions: [
{
name: 'snoozeTime',
text: 'Select a time...',
type: 'select',
options: [
{
text: '1 Hour',
value: '1hour'
},
{
text: '4 Hours',
value: '4'
},
{
text: '24 Hours',
value: '24hours'
},
{
text: 'Custom',
value: 'custom'
}
]
}
]
I want to redirect the user to my web page to choose the custom snooze time. Please tell me how could I achieve it?
Thanks