Skip to main content
The Trello 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

  • cards
    • cardCreated (cards.cardCreated)
    • cardUpdated (cards.cardUpdated)
  • comments
    • commentCreated (comments.commentCreated)
  • lists
    • listCreated (lists.listCreated)
    • listUpdated (lists.listUpdated)
  • members
    • memberAddedToCard (members.memberAddedToCard)

HTTP handler setup

app/api/webhook/route.ts

Events

Cards

Card Created

cards.cardCreated A card was created on a board Payload
webhookHooks example

Card Updated

cards.cardUpdated A card was updated (name, desc, due date, labels, etc.) Payload
webhookHooks example

Comments

Comment Created

comments.commentCreated A comment was added to a card Payload
webhookHooks example

Lists

List Created

lists.listCreated A new list was created on a board Payload
webhookHooks example

List Updated

lists.listUpdated A list was updated (name, closed status, etc.) Payload
webhookHooks example

Members

Member Added To Card

members.memberAddedToCard A member was added to a card Payload
webhookHooks example