POST /api/users/registerRequestBody
{
"name": "name",
"email": "test@example.com",
"password": "password"
}POST /api/quotes/createRequestBody
{
"content": "example content"
}RequestParam
userId - ID of the User who creates a Quote
PUT /api/quotes/update/{quoteId}RequestBody
{
"content": "updated content"
}PathVariable
quoteId - ID of the Quote
DELETE /api/quotes/delete/{quoteId}PathVariable
quoteId - ID of the Quote
GET /api/quotesGET /api/quotes/randomGET /api/quotes/topGET /api/quotes/worstGET /api/quotes/{quoteId}PathVariable
quoteId - ID of the Quote
POST /api/vote/{quoteId}/upPathVariable
quoteId - ID of the Quote
POST /api/vote/{quoteId}/downPathVariable
quoteId - ID of the Quote
POST /api/vote/{quoteId}/evolutionPathVariable
quoteId - ID of the Quote