Skip to main content

Interface: RemindersAddArguments

Extends

  • TokenOverridable.OptionalTeamAssignable

Properties

recurrence?

optional recurrence: ReminderRecurrence;

Description

Specify the repeating behavior of a reminder. If you set the sub-property frequency to weekly, you must also set the weekdays array to specify which days of the week to recur on.

Defined in

packages/web-api/src/types/request/reminders.ts:37


team_id?

optional team_id: string;

Description

If using an org token, team_id is required.

Inherited from

OptionalTeamAssignable.team_id

Defined in

packages/web-api/src/types/request/common.ts:70


text

text: string;

Description

The content of the reminder.

Defined in

packages/web-api/src/types/request/reminders.ts:19


time

time: string | number;

Description

When this reminder should happen, one of:

  • the Unix timestamp (up to five years from now),
  • the number of seconds until the reminder (if within 24 hours), or
  • a natural language description (Ex. "in 15 minutes," or "every Thursday").

Defined in

packages/web-api/src/types/request/reminders.ts:26


token?

optional token: string;

Description

Overridable authentication token bearing required scopes.

Inherited from

TokenOverridable.token

Defined in

packages/web-api/src/types/request/common.ts:43


user?

optional user: string;

Description

No longer supported - reminders cannot be set for other users.

Deprecated

See

Changes to reminders.* APIs announcement.

Defined in

packages/web-api/src/types/request/reminders.ts:32