Does an http request for a service have its performance (bandwidth consumption / internet / time) changed if the parameter names are large?
Example. Request POST with the following parameters
{
"IdUsuario": 30735209,
"IdProdutoBase": 2,
"JsonServico": {
"IdCliente": 6,
"Versao": "1.6.0"
}
}
The request would be faster if it were:
{
"ius": 30735209,
"ipb": 2,
"jds": {
"icl": 6,
"vsa": "1.6.0"
}
}