Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.46 KB

File metadata and controls

29 lines (20 loc) · 1.46 KB

curl samples (application deployed at application context topjava).

For windows use Git Bash

get All Users

curl -s http://localhost:8080/topjava/rest/admin/users --user admin@gmail.com:admin

get Users 100001

curl -s http://localhost:8080/topjava/rest/admin/users/100001 --user admin@gmail.com:admin

get All Meals

curl -s http://localhost:8080/topjava/rest/profile/meals --user user@yandex.ru:password

get Meals 100003

curl -s http://localhost:8080/topjava/rest/profile/meals/100003 --user user@yandex.ru:password

filter Meals

curl -s "http://localhost:8080/topjava/rest/profile/meals/filter?startDate=2020-01-30&startTime=07:00:00&endDate=2020-01-31&endTime=11:00:00" --user user@yandex.ru:password

get Meals not found

curl -s -v http://localhost:8080/topjava/rest/profile/meals/100008 --user user@yandex.ru:password

delete Meals

curl -s -X DELETE http://localhost:8080/topjava/rest/profile/meals/100002 --user user@yandex.ru:password

create Meals

curl -s -X POST -d '{"dateTime":"2020-02-01T12:00","description":"Created lunch","calories":300}' -H 'Content-Type:application/json;charset=UTF-8' http://localhost:8080/topjava/rest/profile/meals --user user@yandex.ru:password

update Meals

curl -s -X PUT -d '{"dateTime":"2020-01-30T07:00", "description":"Updated breakfast", "calories":200}' -H 'Content-Type: application/json' http://localhost:8080/topjava/rest/profile/meals/100003 --user user@yandex.ru:password