Skip to content

Reminder Integrations

Compare
Choose a tag to compare
@hideokamoto hideokamoto released this 01 Nov 16:21
· 198 commits to master since this release

Today we can start to using the Alexa Reminder API.
Remind Customers of Important Tasks or Events with the Reminders API

The ASK Utils provides helpder API Client fot the reminder API.

Upgrade

$ npm i -S ask-utils@latest

Usage

PUT new reminder

const client = new RemidnerClient(handlerInput)
const payload = {...}
client.setPayload(payload)
await client.fetch('POST')

Lists reminder

const client = new RemidnerClient(handlerInput)
const lists = await client.fetch()

Delete a reminder

const client = new RemidnerClient(handlerInput)
await client.fetch('DELETE', `/v1/alerts/reminders/${id}`)

More information

Read our API Documentations.
https://ask-utils.github.io/ask-utils/RemidnerClient.html