new Term can not be created
ChrisBtt opened this issue · 1 comments
ChrisBtt commented
Creating a new term with name, begin, end filled in in correct format leads to "Server responded with Bad Request 400 (http://localhost:8081/v1//terms)"
With website as well as http request only with name via console.
TomTomRixRix commented
Term fields begin
and end
are also required. Make sure, that the end date is always after the begin date.
Here is an example request that works in my setup:
http POST :8080/v1/terms name="Toms Term" begin="2020-06-01" end="2020-06-30"