Search for clients by keyword
cURL
curl --request GET \ --url https://api.example.com/api/v1/clientes/search
{ "[]": [ { "id": 123, "dni": "<string>", "nombreCompleto": "<string>", "correo": "<string>", "telefono": "<string>" } ] }
GET /api/v1/clientes/search
curl -X GET "http://localhost:8080/api/v1/clientes/search?keyword=garcia"
curl -X GET "http://localhost:8080/api/v1/clientes/search?keyword=12345678"
curl -X GET "http://localhost:8080/api/v1/clientes/search?keyword=maria"
curl -X GET "http://localhost:8080/api/v1/clientes/search?keyword=987"
[ { "id": 1, "dni": "12345678", "nombreCompleto": "María García", "correo": "[email protected]", "telefono": "987654321" }, { "id": 5, "dni": "99887766", "nombreCompleto": "María Torres", "correo": "[email protected]", "telefono": "912345678" } ]