This API is intended for use with our second React project Ada's Inpiration Board.
-
Retrieve list of all Boards: https://inspiration-board.herokuapp.com/boards
-
Retrieve list of cards for a single board From Name: https://inspiration-board.herokuapp.com/boards/Ada-Lovelace/cards
- Note if a board with the given
board_name
does not exist, it will be created
- Note if a board with the given
-
Retrieve specific card: https://inspiration-board.herokuapp.com/boards/:board_name/cards/:card_id
-
Create a board:
- POST https://inspiration-board.herokuapp.com/boards
- accepted params:
- name (string)
-
Add a New Card:
- POST https://inspiration-board.herokuapp.com/boards/:board_name/cards
- accepted params:
- text (string)
- emoji (string)
- Note if a board with the given name does not exist it will be created
- Update a card
- PATCH https://inspiration-board.herokuapp.com/boards/:board_name/cards/:card_id
- text (string)
- emoji (string)
- NOTE if the given board name does not exist it will be created.
- Delete a board, warning destroys all card data for that board
- Delete a card