3
I have the following json:
{
"razao_social":"INTELIDER",
"nome_fantasia":"INTELIDER LTDA",
"rg_insc_estadual":"123456"
}
And another json:
{
"usuario":{
"login":"gleyson",
"senha":"987654"
}
}
I need him to stay that way:
{
"usuario":{
"login":"gleyson",
"senha":"987654"
},
"razao_social":"INTELIDER",
"nome_fantasia":"INTELIDER LTDA",
"rg_insc_estadual":"123456"
}
I tried to do using parse but I did not succeed.
thanks for the reply
– Gleyson Silva