/tasker

Test REST API using Java / Jersey

Primary LanguageJava

tasker

Test REST API using Java / Jersey, runs an embedded Grizzly web server.

Starts up on http://localhost:8080/tasker

Get all tasks

GET /tasks

Get one task

GET /tasks/{key}

Create a new task

POST /tasks/{key}

{ "body": "Another Body", "title": "Hello World" }

Update a task

PUT /tasks/{key}

{ "body": "Another Body", "title": "Hello World", "done": true }

Delete a task

DELETE /tasks/{key}

Search for tasks in Elastic Search

GET /tasks/search?query={query}