Retrieve a specific client by ID
cURL
curl --request GET \ --url https://api.example.com/api/v1/clientes/{id}
{ "id": 123, "dni": "<string>", "nombreCompleto": "<string>", "correo": "<string>", "telefono": "<string>" }
GET /api/v1/clientes/{id}
curl -X GET http://localhost:8080/api/v1/clientes/1
{ "id": 1, "dni": "12345678", "nombreCompleto": "María García", "correo": "[email protected]", "telefono": "987654321" }
{ "error": "ClienteNotFoundException", "message": "Cliente no encontrado con id: 999" }
ClienteNotFoundException