forked from wekan/wekan
-
Notifications
You must be signed in to change notification settings - Fork 0
Webhook data
Christoph Jahn edited this page Jun 1, 2019
·
2 revisions
When a webhook is activated it sends the related information within the POST request body.
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"
}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"
}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"
}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"
}Webhooks that are raised on card content change
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"
}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"
}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"
}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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}Webhooks that are raised on board events
{
"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"
}Webhooks that are raised on list events
{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}{
"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"
}- About
- No UI major redesign
- Test Edge
- FAQ
- IRC FAQ - answers to questions asked at IRC
- Roadmap - board at Wekan demo
- Team
- Press
- Blog
- NOT related to Wekan
- Wekan vs Trello vs Restyaboard
- Features
- Custom Logo
- Gantt Chart
- Admin: Impersonate user
- Emoji etc syntax
- Numbered text syntax
- Time Tracking
- Subtasks <== Has fix
- Templates
- Archive and Delete
- Adding Users
- LDAP
- Keycloak
- Google login
- Azure
- OAuth2, Auth0, GitLab, RocketChat
- Oracle OIM on premise using OAuth2
- ADFS 4.0 using OAuth2 and OpenID
- Nextcloud
- CAS Please test
- SAML Please test
- IFTTT
- Custom Fields
- Due Date
- Forgot Password
- Requirements
- Translations
- Roadmap
- Fix Export board menu not visible on some boards
- Integrations
- RAM usage
- Demo
- Swimlane Documentation
- Wekan Markdown
- Download Wekan for various Platforms: Supported by xet7, Operating Systems, NAS, Cloud
- Example: New card with Python3 and REST API
- Python client to REST API
- Java
- Wekan Sandstorm cards to CSV using Python
- Excel and VBA
- Global Webhook
- Limiting Webhook data
- Receiving Webhooks
- Outgoing Webhook to Discord/Slack/RocketChat/Riot
- Outgoing Webhook to NodeRed
- Outgoing Webhook to PowerShell
- Security: Webhook and CA
- Outgoing Webhooks Data
- Outgoing Webhooks and Let's Encrypt
- Outgoing Webhooks Original Pull Request, multiple Webhooks, more parameters and response order