### abc GET http://localhost:8080/api/v1/plants Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJsdWthcy5rYXJzY2hAZ214LmRlIiwiaWF0IjoxNzAxMTY0ODMxLCJleHAiOjE3MDEyNTEyMzF9.c8NrtsWI0TyZPDG6wgoibEZnqPtGuXjvd9u6HQ3lOEU ### Create account POST http://localhost:8080/api/v1/auth/register content-type: application/json { "email": "lukas.karsch@gmx.de", "firstname": "Lukas", "lastname": "Karsch", "password": "myPassword123" } ### Authenticate POST http://localhost:8080/api/v1/auth/authenticate content-type: application/json { "email": "lukas.karsch@gmx.de", "password": "myPassword123" } ### SearchRequest GET http://localhost:8080/api/v1/plants/search Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJsdWthcy5rYXJzY2hAZ214LmRlIiwiaWF0IjoxNzAxMjczMDI4LCJleHAiOjE3MDEzNTk0Mjh9.eOZvYQZDfcv1rUG8sQ3E7nDuZjgQffWR_jQVMQK9WLw content-type: application/json { "searchTerm": "Salat" }