Hi Marcello,
Probably what happened is that the linux driver assigned another number to the Quectel modem, so instead of "modem": "1-1.4" it can be "modem": "1-1.2" for example.
To find out the modem number, you can use the command "uci show simcard" or use the following JSON-RPC.
{
"jsonrpc": "2.0", "id": 1, "method": "call", "params":
[
"{{ubus_key}}", "uci", "get",
{
"config":"simcard"
}
]
}
After getting to know whats the modem number, you can change it on your JSON-RPC request and get the data you want.
Another option, is using the gsmctl commands, so you can get data directly from the modem, more about that in this article
Best regards.