I receive output values from another node, through an API, is there a way to change these separate values?
example: {“binancecoin”:{“brl”:1386.45}}
get only this value 1386.45
details, the method is http in logic
not creating a data api rest
recovering via http in logic
not sure, but something like this,
your_return[0][1]
how do i do it, this is the return outputs[“HTTP request”].resBodyRaw
outputs[“HTTP request”].resBodyRaw[0][1] ???
Pode ser assim, ou outputs[“solicitação HTTP”].resBodyRaw[“binancecoin”][“brl”]
Tente algo do genero
Did you manage to get the data you want?