Back to Wekan

Wekan REST API

docs/API/REST-API.md

9.084.6 KB
Original Source

REST API is not complete yet, please add missing functionality with pull requests to devel branch.

If you are in a hurry, you can use these to have more functionality:

For workflows see If-this-then-that issue than mentions Huginn, Flogo etc.

Wekan REST API

The REST API allows you to control and extend Wekan with ease.

If you are an end-user and not a dev or a tester, create an issue to request new APIs.

All API calls in the documentation are made using curl. However, you are free to use Java / Python / PHP / Golang / Ruby / Swift / Objective-C / Rust / Scala / C# or any other programming languages.

Production Security Concerns

When calling a production Wekan server, ensure it is running via HTTPS and has a valid SSL Certificate. The login method requires you to post your username and password in plaintext, which is why we highly suggest only calling the REST login api over HTTPS. Also, few things to note:

  • Only call via HTTPS
  • Implement a timed authorization token expiration strategy
  • Ensure the calling user only has permissions for what they are calling and no more

Summary

Authentication

HTTP MethodUrlShort Description
POST/users/loginAuthenticate with the REST API.

Users

HTTP MethodUrlShort Description
POST/users/registerRegister a new user.
POST/api/usersCreate a new user.
PUT/api/users/:idDisable an existing user.
PUT/api/users/:idEnable an existing user.
PUT/api/users/:idAdmin takes the ownership.
DELETE/api/users/:idDelete an existing user. (Warning)
GET/api/users/:idGets a user's information.
GET/api/usersAll of the users.
GET/api/userGets a logged-in user.

Cards

HTTP MethodUrlShort Description
POST/api/boards/:boardId/lists/:listId/cardsAdd a card to a list, board, and swimlane.
PUT/api/boards/:boardId/lists/:fromListId/cards/:cardIdUpdate a card.
DELETE/api/boards/:boardId/lists/:listId/cards/:cardIdDelete a card.

Login

URLRequires AuthHTTP Method
/users/loginnoPOST

Payload

Authentication with username

ArgumentExampleRequiredDescription
usernamemyusernameRequiredYour username
passwordmy$up3erP@ssw0rdRequiredYour password

Authentication with email

ArgumentExampleRequiredDescription
email[email protected]RequiredYour email
passwordmy$up3erP@ssw0rdRequiredYour password
  • Notes:
  • You will need to provide the token for any of the authenticated methods.

Example Call - As Form Data

DOES NOT WORK ! Please use As JSON example below ! https://github.com/wekan/wekan/issues/4807

bash
curl http://localhost:3000/users/login \
     -d "username=myusername&password=mypassword"
bash
curl http://localhost:3000/users/login \
     -d "[email protected]&password=mypassword"

Example Call - As JSON

THIS WORKS !! Alternatively, look at api.py example at https://github.com/wekan/wekan

NOTE: Username and password is case sensitive. So type BIG and small letters correctly.

bash
curl -H "Content-type:application/json" \
      http://localhost:3000/users/login \
      -d '{ "username": "myusername", "password": "mypassword" }'
bash
curl -H "Content-type:application/json" \
      http://localhost:3000/users/login \
      -d '{ "email": "[email protected]", "password": "mypassword" }'

Result

json
{
  "id": "user id",
  "token": "string",
  "tokenExpires": "ISO encoded date string"
}

Result example

json
{
  "id": "XQMZgynx9M79qTtQc",
  "token": "ExMp2s9ML1JNp_l11sIfINPT3wykZ1SsVwg-cnxKdc8",
  "tokenExpires": "2017-12-15T00:47:26.303Z"
}