Skip to content

getReminder

api.getReminder(reminderId)

Parameters

  • reminderId string

Return

Promise<GetReminderResponse>

Types

ts
export type GetReminderResponse = ReminderGroup;

Examples

ts
api.getReminder("reminderId1")
    .then(console.log)
    .catch(console.error);