curl -X GET http://localhost:8081/users -H "content-type:application/json"
curl -X GET http://localhost:8081/users/ec51aa4e-08d8-42be-a9d6-9ec0af54c83d -H "content-type:application/json"
curl -X POST http://localhost:8081/users -H "content-type:application/json" -d '{ "name": "test" }'
curl -X PATCH http://localhost:8081/users/ec51aa4e-08d8-42be-a9d6-9ec0af54c83d -H "content-type:application/json" -d '{ "name": "test3", "address": "address" }'
curl -X DELETE http://localhost:8081/users/ec51aa4e-08d8-42be-a9d6-9ec0af54c83d -H "content-type:application/json"
curl -X POST http://localhost:8081/users -H "content-type:application/json" -d '{ "name": "test" }'
curl -X POST http://localhost:8081/circles?userId={userId}&circleName={circleName} -H "content-type:application/json" -d '{}'
curl -X POST http://localhost:8081/circles/{circleId}/join?userId={userId} -H "content-type:application/json" -d '{}'