GET /cards
- Query parameters
name
: The name of the user to get the cards for
- Returns: An array of cards objects with the same name as passed in query parameters
- Query parameters
PUT /card
- Query parameters
name
: The name of the user to add the cards to
- Body: Card content as raw text
- Returns: ID of the new card added
- Query parameters
DELETE /card
- Query parameters
name
: The name of the user the card belongs toid
: The ID of the card
- Query parameters
PATCH /card
- Query parameters
name
: The name of the user the card belongs toid
: The id of the card
- Body: New card content as raw text
- Query parameters