Files
storage-service/store.http
2020-07-03 21:50:30 +03:00

22 lines
322 B
HTTP

GET http://localhost:4001/store HTTP/1.1
###
GET http://localhost:4001/store/testApi HTTP/1.1
###
POST http://localhost:4001/store HTTP/1.1
content-type: application/json
{
"key": "testApi",
"value": {
"name": "ivan",
"age": 15
}
}
###
DELETE http://localhost:4001/store/testApi HTTP/1.1