GetRemindersArgs
type GetRemindersArgs = {
cursor?: string | null;
limit?: number;
taskId?: string | null;
};
Arguments for listing reminders.
See
https://developer.todoist.com/api/v1/#tag/Reminders/operation/get_reminders_api_v1_reminders_get
Properties
cursor?
optional cursor: string | null;
Cursor for pagination.
limit?
optional limit: number;
Number of results per page (max 200, default 50).
taskId?
optional taskId: string | null;
Filter by task ID.