How to take a value from one node and import it into another one?

I have inovelli dimmer switches. I downloaded a palette which is supposed to let me automatically change the LED color, strip effect, etc. It doesnt work.

BUT…
the value it spits out is correct. And if I send this value to the switch in a call service node, the switch responds accordingly.

So what I want to do is take the value that the zwave node spits out, currently it will spit out 35523243 and I want to import that into my Set LED node data field, which is currently a 1. Is this possible?

Picture below and flow attached if anyone can modify for me.

[{"id":"c7a24234.cfeb1","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"b8d7007c.5d74","type":"inovelli-status-manager","z":"c7a24234.cfeb1","name":"zwave","nodeid":"14","color":"181","level":10,"duration":30,"display":"2","switchtype":"16","x":300,"y":120,"wires":[["7de49816.5758e8"]]},{"id":"cfd93d1b.f2771","type":"inject","z":"c7a24234.cfeb1","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":110,"y":120,"wires":[["b8d7007c.5d74"]]},{"id":"7de49816.5758e8","type":"api-call-service","z":"c7a24234.cfeb1","name":"","server":"456659de.370498","version":1,"debugenabled":false,"service_domain":"zwave","service":"set_config_parameter","entityId":"","data":"","dataType":"json","mergecontext":"","output_location":"","output_location_type":"none","mustacheAltTags":false,"x":570,"y":120,"wires":[[]]},{"id":"b21e9a00.94ad78","type":"api-call-service","z":"c7a24234.cfeb1","name":"Set LED","server":"456659de.370498","version":1,"debugenabled":false,"service_domain":"zwave","service":"set_config_parameter","entityId":"","data":"{\"node_id\":14,\"parameter\":16,\"size\":4,\"value\":1}","dataType":"json","mergecontext":"","output_location":"","output_location_type":"none","mustacheAltTags":false,"x":480,"y":280,"wires":[[]]},{"id":"6daabf45.340a4","type":"inovelli-status-manager","z":"c7a24234.cfeb1","name":"zwave","nodeid":"14","color":"181","level":10,"duration":30,"display":"2","switchtype":"16","x":300,"y":280,"wires":[["b21e9a00.94ad78"]]},{"id":"9b904088.ac83d","type":"inject","z":"c7a24234.cfeb1","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":110,"y":280,"wires":[["6daabf45.340a4"]]},{"id":"a34a2850.6d1708","type":"comment","z":"c7a24234.cfeb1","name":"This does not work, although it should","info":"","x":180,"y":80,"wires":[]},{"id":"2a2ff22.94cfc0e","type":"comment","z":"c7a24234.cfeb1","name":"How do I automatically insert the \"value\" of zwave node, currently 35523243 into the Set LED call service node value which is currently 1","info":"","x":530,"y":240,"wires":[]},{"id":"456659de.370498","type":"server","z":"","name":"Home Assistant","addon":true}]

I did something like this recently. Maybe this will help?

[{“id”:“5210b9ab.5950d8”,“type”:“api-call-service”,“z”:“6ece6dd2.c52514”,“name”:“Set LED”,“server”:“d693f62d.b92c78”,“version”:1,“debugenabled”:false,“service_domain”:“zwave”,“service”:“set_config_parameter”,“entityId”:“”,“data”:“{"node_id":14,"parameter":16,"size":4,"value":"{{ flow.new_variable }}"}”,“dataType”:“json”,“mergecontext”:“”,“output_location”:“”,“output_location_type”:“none”,“mustacheAltTags”:false,“x”:560,“y”:380,“wires”:[]},{“id”:“530604ee.b7e19c”,“type”:“inject”,“z”:“6ece6dd2.c52514”,“name”:“”,“props”:[{“p”:“payload”}],“repeat”:“”,“crontab”:“”,“once”:false,“onceDelay”:0.1,“topic”:“”,“payload”:“35523243”,“payloadType”:“str”,“x”:100,“y”:380,“wires”:[[“2965386e.73a428”]]},{“id”:“2965386e.73a428”,“type”:“change”,“z”:“6ece6dd2.c52514”,“name”:“Set Variable new_variable”,“rules”:[{“t”:“set”,“p”:“new_variable”,“pt”:“flow”,“to”:“payload”,“tot”:“msg”}],“action”:“”,“property”:“”,“from”:“”,“to”:“”,“reg”:false,“x”:330,“y”:380,“wires”:[[“5210b9ab.5950d8”]]},{“id”:“d693f62d.b92c78”,“type”:“server”,“z”:“”,“name”:“Home Assistant”,“addon”:true}]

@overkill32

Can you post your flow again? Im getting JSON error when trying to import

Use a change node to copy the payload to a variable. Reference the variable in your service call.