Skip to main content
The Todoist plugin handles incoming webhooks. Point your provider’s subscription URL at your Corsair HTTP handler (see Overview for setup context and the exact URL shape).
New to Corsair? See webhooks and hooks.

Webhook map

  • items
    • added (items.added)
    • completed (items.completed)
    • deleted (items.deleted)
    • uncompleted (items.uncompleted)
    • updated (items.updated)
  • notes
    • added (notes.added)
    • deleted (notes.deleted)
    • updated (notes.updated)
  • projects
    • added (projects.added)
    • archived (projects.archived)
    • deleted (projects.deleted)
    • unarchived (projects.unarchived)
    • updated (projects.updated)

HTTP handler setup

app/api/webhook/route.ts

Events

Items

Added

items.added A new task was added Payload: unknown webhookHooks example

Completed

items.completed A task was completed Payload: unknown webhookHooks example

Deleted

items.deleted A task was deleted Payload: unknown webhookHooks example

Uncompleted

items.uncompleted A completed task was uncompleted Payload: unknown webhookHooks example

Updated

items.updated A task was updated Payload: unknown webhookHooks example

Notes

Added

notes.added A new note/comment was added Payload: unknown webhookHooks example

Deleted

notes.deleted A note/comment was deleted Payload: unknown webhookHooks example

Updated

notes.updated A note/comment was updated Payload: unknown webhookHooks example

Projects

Added

projects.added A new project was created Payload: unknown webhookHooks example

Archived

projects.archived A project was archived Payload: unknown webhookHooks example

Deleted

projects.deleted A project was deleted Payload: unknown webhookHooks example

Unarchived

projects.unarchived A project was unarchived Payload: unknown webhookHooks example

Updated

projects.updated A project was updated Payload: unknown webhookHooks example