Retrieve all clients in the system
cURL
curl --request GET \ --url https://api.example.com/api/v1/clientes
{ "[]": [ { "id": 123, "dni": "<string>", "nombreCompleto": "<string>", "correo": "<string>", "telefono": "<string>" } ] }
GET /api/v1/clientes
curl -X GET http://localhost:8080/api/v1/clientes
[ { "id": 1, "dni": "12345678", "nombreCompleto": "María García", "correo": "[email protected]", "telefono": "987654321" }, { "id": 2, "dni": "87654321", "nombreCompleto": "Juan Pérez", "correo": "[email protected]", "telefono": "912345678" }, { "id": 3, "dni": "11223344", "nombreCompleto": "Ana Torres", "correo": "[email protected]", "telefono": "998877665" } ]