omni-spv curl

get all

curl --location 'http://localhost:8080/spv'

get by id

curl --location 'http://localhost:8080/spv/683ed8d135dcab6ef90dafea'

post one

curl --location 'http://localhost:8080/spv' \
--header 'Content-Type: application/json' \
--data '{"foo": "bar", "answer": 42, "nested": {"a": 1, "b": true}}'```

# update one by id
```c
curl --location --request PUT 'http://localhost:8080/spv/683ed8d135dcab6ef90dafea' \
--header 'Content-Type: application/json' \
--data '{"foo": "this is changed and all", "answer": 42, "nested": {"a": 1, "b": true}}'

🔗 [Insert Google Drive URL here]