Loads reminders of an Alexa Skill which could be filtered by an status which could be ON or COMPLETED.
All, Active or Completedstatus, name of the variable that contains information of the Alexa Reminders API responseExample of ${status.reminders} Return Variable Name value:
[
{
"alertToken": "eb5e1fdf-b7a2-4e8b-a17b-1edd6404c6ad",
"createdTime": "2022-01-31T09:10:06.052Z",
"updatedTime": "2022-01-31T09:10:37.966Z",
"trigger": {
"type": "SCHEDULED_RELATIVE",
"scheduledTime": "2022-01-31T10:10:21.000",
"timeZoneId": "Europe\/Paris",
"offsetInSeconds": 15,
"recurrence": null
},
"status": "COMPLETED",
"alertInfo": {
"spokenInfo": {
"content": [
{
"locale": "en-US",
"text": "Feed your kitties.",
"ssml": "Feed your kitties. "
}
]
}
},
"pushNotification": {
"status": "ENABLED"
},
"version": "4"
},
{
"alertToken": "118f45ce-ed6f-4e05-af33-067b7360df1b",
"createdTime": "2022-01-31T09:19:47.897Z",
"updatedTime": "2022-01-31T09:21:06.983Z",
"trigger": {
"type": "SCHEDULED_ABSOLUTE",
"scheduledTime": "2022-01-31T10:21:00.000",
"timeZoneId": "Europe\/Paris",
"offsetInSeconds": 0,
"recurrence": null
},
"status": "COMPLETED",
"alertInfo": {
"spokenInfo": {
"content": [
{
"locale": "en-US",
"text": "It's time to feed your kitties.",
"ssml": "It's time to feed your kitties. "
}
]
}
},
"pushNotification": {
"status": "ENABLED"
},
"version": "4"
}
]
Multiple - if status variable Return Variable Name contains at least two reminders or no elements are present in Single or Empty, Multiple flow will be executedSingle - if no elements are present in Single flow and status variable Return Variable Name contains only one reminder, Multiple flow will be executedEmpty - if no elements are present in Empty flow and status variable Return Variable Name has no reminders, Multiple flow will be executed