aboutsummaryrefslogtreecommitdiffstats
path: root/tests.sh
blob: 1187978025b1400461a9bdf6a27bee119a9c0a96 (plain) (blame)
1
2
3
4
5
6
#!/bin/sh

curl -X POST -H "Content-Type:application/json" -d '{"name":"doc1", "lastModified": 1652882691, "body":"Hello"}' "http://localhost:9080/api/v1/doc"
curl -X GET "http://localhost:9080/api/v1/doc/2"
curl -X DELETE "http://localhost:9080/api/v1/doc/1"
curl -X PUT -H "Content-Type:application/json" -d '{"id": 1, "body": "Die before I do"}' "http://localhost:9080/api/v1/doc/1"