-- create user
curl --request POST 'http://localhost:9500/create' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "Beatrice Johnston",
    "email": "Koby_Kirlin51@example.net",
    "age": "32"
}'

-- get user
curl --request GET 'http://localhost:9500/id/35'

-- get all users
curl --request GET 'http://localhost:9500/all'

-- delete user
curl --request DELETE 'http://localhost:9500/id/20'
