- Get all users
curl http://localhost:8080/users
curl http://localhost:8080/users/{id}
curl -X POST -H "Content-Type: application/json" -d '{"name": "John Doe", "email": "john.doe@example.com", "password": "password"}' http://localhost:8080/users
curl -X POST -H "Content-Type: application/json" -d '{"email": "john.doe@example.com", "password": "password"}' http://localhost:8081/auth/login
curl -X POST -H "Content-Type: application/json" -d '{"email": "john.doe@example.com", "password": "password"}' http://localhost:8081/auth/register
curl http://localhost:8082/payments
curl -X POST -H "Content-Type: application/json" -d '{"userId": 1, "amount": 100.0}' http://localhost:8082/payments
curl -X POST -H "Content-Type: application/json" -d '{"userId": 1, "message": "Hello, John!"}' http://localhost:8083/notifications
curl http://localhost:8083/notifications/{userId}
curl http://localhost:3000/api/users
curl http://localhost:3000/api/auth/login
curl http://localhost:3000/api/payments
curl http://localhost:3000/api/notifications
Use Kubernetes and Docker commands to monitor running services and check logs.
kubectl get pods
kubectl logs {pod_name}
docker ps
docker logs {container_id}