I am using a service call to update an input_text value in HomeAssistant.
The service call works perfectly if I use {"value":"test message"}
in the data field.
What I want to do is use the msg.payload
however if I use {"value":msg.payload}
I get the follow error.
"Call-service API error. Error Message: extra keys not allowed @ data['0']"
encasing the msg.payload in {} does not help and encasing the msg.payload
in ""
results in the input_text being updated with "msg.payload"
and not the content of the payload.
For completeness the payload is a 36 character string coming from a function node.
Screen shot below:
Thanks in advance