mirror of
https://github.com/wekan/wekan.git
synced 2025-06-28 09:27:54 -04:00
10 KiB
10 KiB
Webhook data
When a webhook is activated it sends the related information within the POST request body.
Cards
Creation
When a new card is created on board
{
"text": "{{wekan-username}} created card \"{{card-title}}\" to list \"{{list-name}}\" at swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-createCard"
}
Move
When a card is moved beweteen lists
{
"text": "{{wekan-username}} moved card \"{{card-title}}\" at board \"{{board-name}}\" from list \"{{old-list-name}}\" at swimlane \"{{swimlane-name}}\" to list \"{{new-list-name}}\" at swimlane \"{{swimlane-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{new-list-id}}",
"oldListId": "{{old-list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-moveCard"
}
Archival
A card is moved to archive
{
"text": "{{wekan-username}} Card \"{{card-title}}\" at list \"{{list-name}}\" at swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\" moved to Archive\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-archivedCard"
}
Restored
When a card is restored from archive
{
"text": "{{wekan-username}} restored card \"{{card-title}}\" to list \"{{list-name}}\" at swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-restoredCard"
}
Card content
Webhooks that are raised on card content change
Comment creation
A user comments the card
{
"text": "{{wekan-username}} commented on card \"{{card-title}}\": \"{{comment}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"comment": "{{comment}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"commentId": "{{comment-id}}",
"description": "act-addComment"
}
Comment edit
A user edits a comment on the card
{
"text": "{{wekan-username}} commented on card \"{{card-title}}\": \"{{comment}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"comment": "{{comment}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"commentId": "{{comment-id}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-editComment"
}
AddLabel
A label is added to card
{
"text": "{{wekan-username}} Added label __label__ to card \"{{card-title}}\" at list \"{{list-name}}\" at swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-addedLabel"
}
Join member
When a member is added to card
{
"text": "{{wekan-username}} added member {{wekan-username}} to card \"{{card-title}}\" at list \"{{list-name}}\" at swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-joinMember"
}
Set custom field
A custom field on card is set
{
"text": "{{wekan-username}} act-setCustomField\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-setCustomField"
}
Add attachment
{
"text": "{{wekan-username}} added attachment {{attachment-id}} to card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-addAttachment"
}
Delete attachment
{
"text": "{{wekan-username}} deleted attachment __attachment__ at card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-deleteAttachment"
}
Add checklist
{
"text": "{{wekan-username}} added checklist \"{{checklist-name}}\" to card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-addChecklist"
}
Remove checklist
{
"text": "{{wekan-username}} removed checklist \"{{checklist-name}}\" from card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-removeChecklist"
}
Uncomplete checklist
{
"text": "{{wekan-username}} uncompleted checklist \"{{checklist-name}}\" at card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-uncompleteChecklist"
}
Add checklist item
{
"text": "{{wekan-username}} added checklist item {{checklistitem-name}} to checklist \"{{checklist-name}}\" at card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-addChecklistItem"
}
Checked item
{
"text": "{{wekan-username}} checked {{checklist-name}} of checklist \"{{checklist-name}}\" at card \"{{card-title}}\" at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-checkedItem"
}
Removed checklist item
{
"text": "{{wekan-username}} act-removedChecklistItem\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}/{{card-id}}",
"cardId": "{{card-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"card": "{{card-title}}",
"description": "act-removedChecklistItem"
}
Board
Webhooks that are raised on board events
Create custom field
{
"text": "{{wekan-username}} created custom field {{customfield-name}} to card __card__ at list __list__ at swimlane __swimlane__ at board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"description": "act-createCustomField"
}
Lists
Webhooks that are raised on list events
Create list
{
"text": "{{wekan-username}} added list \"{{list-name}}\" to board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"description": "act-createList"
}
Archived list
{
"text": "{{wekan-username}} List \"{{list-name}}\" at swimlane __swimlane__ at board \"{{board-name}}\" moved to Archive\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"description": "act-archivedList"
}
Remove list
{
"text": "{{wekan-username}} act-removeList\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"listId": "{{list-id}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"description": "act-removeList"
}
Swimlane
Create swimlane
{
"text": "{{wekan-username}} created swimlane \"{{swimlane-name}}\" to board \"{{board-name}}\"\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"swimlaneId": "{{swimlane-id}}",
"description": "act-createSwimlane"
}
Archived swimlane
{
"text": "{{wekan-username}} Swimlane \"{{swimlane-name}}\" at board \"{{board-name}}\" moved to Archive\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"swimlaneId": "{{swimlane-id}",
"description": "act-archivedSwimlane"
}
Remove swimlane
{
"text": "{{wekan-username}} act-removeSwimlane\nhttp://{{wekan-host}}/b/{{board-id}}/{{board-name}}",
"boardId": "{{board-id}}",
"user": "{{wekan-username}}",
"swimlaneId": "{{swimlane-id}",
"description": "act-removeSwimlane"
}