... add a debug node after the mqtt in node - set to show full msg - and show us the result of a couple of messages so we can see the different types that arrive.
Great - so from that debug we can see that the (useful) topic is the testeIR/tele/RESULT one - and that the reply is a JSON string... and that the really useful bit is the Data property within that.
So first we can change the MQTT node to Output - a parsed JSON object. That would change it from a string into an object... then you need a change node - set to move msg.payload.Data to msg.payload - before then feeding into a switch (as you have ) and a debug jsut so you can check it's getting the right sort of data.
Put another condition in the switch node and use the 'otherwise' option.
Also, in the switch node are you using 'checking all rules' or 'stopping after first match'?
Use 'stopping after first match' if you aren't trying to make an AND condition with the rules i.e.
if A and B and C go do something <== 'checking all rules'
vrs
if A go do something1
if B go do something2
if C go do something3