From 6e08054fc0778d713c4effa3d41ec7ab35206284 Mon Sep 17 00:00:00 2001 From: Thor Berggren Date: Sat, 7 Apr 2018 13:23:50 -0700 Subject: [PATCH] Created section for API requests related to Cards. --- REST-API.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/REST-API.md b/REST-API.md index 7cb366a..7d25288 100644 --- a/REST-API.md +++ b/REST-API.md @@ -40,6 +40,9 @@ When calling a production Wekan server, ensure it is running via HTTPS and has a | `GET` | `/api/users/:id` | [Gets a user's information.](#user-information) | | `GET` | `/api/users` | [All of the users.](#user-list) | | `GET` | `/api/user` | [Gets a logged-in user.](#user-logged-in) | +### Cards +| HTTP Method | Url | Short Description | +| :--- | :--- | :--- | | `POST` | `/api/boards/:boardId/lists/:listId/cards` | [Add a card to a list, board, and swimlane.](#add-card-to-list-board-swimlane) | ---