The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
wekan/docs/Webhooks/Java.md

1.0 KiB

This page is about using Wekan from Java code.

Wekan is made with Javascript and uses MongoDB database.

Using Wekan REST API

With Jython, you can use Wekan REST API like with Python

Global Webhooks

For Global Webhooks in Admin Panel, Wekan sends all events in all boards to webhook URL, like add card. Although, sending some messages for some events is not yet implemented, more could be added later.

Data is sent in this kind of JSON format.

You can receive webhook data in Java like this.

Then for each received data, your code can read content and based on incoming data call Wekan REST API, some Java interface, etc.

Outgoing Webhooks can also go to Slack, RocketChat, NodeRED, PowerShell etc. See right menu webhook links when scrolling down wiki page https://github.com/wekan/wekan/wiki

If you call some Java interface that returns some data, you can then write that data to Wekan card with Wekan REST API.