How to seperate incoming ARRAY message from SNMP device

How it does.

The node red docs describing how to handle messages will show you how to get the path to that item from the payload.
https://nodered.org/docs/user-guide/messages

Thanks for express answer Colin. Now the problem is almost solved.

I use change node .

Set msg.payload.value
to msg.payload

Value came instead "[Circular ~]"

[{"id":"d4170f7d.697fd","type":"tab","label":"Flow 1","disabled":false,"info":""},{"id":"6791bfb0.f0061","type":"snmp walker","z":"d4170f7d.697fd","host":"10.67.20.28","community":"public","version":"1","oids":"1.3.6.1.4.1.534.1.4.4.1.3","timeout":5,"name":"CMUPS CUR. OUT","x":359.5,"y":176,"wires":[["40588324.d68c3c"]]},{"id":"34e11622.78691a","type":"inject","z":"d4170f7d.697fd","name":"","topic":"","payload":"","payloadType":"date","repeat":"5","crontab":"","once":false,"onceDelay":0.1,"x":100,"y":177,"wires":[["6791bfb0.f0061"]]},{"id":"94ebf0be.198b3","type":"debug","z":"d4170f7d.697fd","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","x":1090,"y":179,"wires":[]},{"id":"40588324.d68c3c","type":"json","z":"d4170f7d.697fd","name":"","property":"payload","action":"obj","pretty":false,"x":581.5,"y":177,"wires":[["9034130b.73bdd"]]},{"id":"9034130b.73bdd","type":"function","z":"d4170f7d.697fd","name":"","func":"msg.payload = msg.payload [0]\nreturn msg;","outputs":1,"noerr":0,"x":773.5,"y":176,"wires":[["43d84565.cbe5cc"]]},{"id":"43d84565.cbe5cc","type":"change","z":"d4170f7d.697fd","name":"","rules":[{"t":"set","p":"payload.value","pt":"msg","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":908.5,"y":286,"wires":[["94ebf0be.198b3"]]}]

I was solve this problem wrote that msg.payload = msg.payload [0].value at theFunction node.

Thnks for all.

Best regards