Please be specific, where in my example flow is the data from, debug node number please
Here is a fuller example of how to move the first api data from the payload and save to data, then reset the headers before moving to next api call.
hope it helps
[{"id":"b8fbdf3c0c93f313","type":"inject","z":"65617ffeb779f51c","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"[{\"id\":8082201,\"organization_id\":3555,\"label\":\"Customer Technical Document\",\"description\":\"\",\"client_id\":654402,\"customId\":\"\",\"templateId\":16720,\"templateName\":\"Customer Technical Document \",\"type\":\"custom\"}]","payloadType":"json","x":70,"y":3260,"wires":[["12c083bcda0014a2"]]},{"id":"12c083bcda0014a2","type":"split","z":"65617ffeb779f51c","name":"","splt":"\\n","spltType":"str","arraySplt":1,"arraySpltType":"len","stream":false,"addname":"","x":190,"y":3260,"wires":[["43a85b8dd068f42c"]]},{"id":"43a85b8dd068f42c","type":"delay","z":"65617ffeb779f51c","name":"","pauseType":"rate","timeout":"5","timeoutUnits":"seconds","rate":"4","nbRateUnits":"1","rateUnits":"second","randomFirst":"1","randomLast":"5","randomUnits":"seconds","drop":false,"allowrate":false,"outputs":1,"x":330,"y":3260,"wires":[["68c3533ed35bbf7d"]]},{"id":"68c3533ed35bbf7d","type":"change","z":"65617ffeb779f51c","name":"","rules":[{"t":"move","p":"payload","pt":"msg","to":"data","tot":"msg"},{"t":"set","p":"headers","pt":"msg","to":"{}","tot":"json"},{"t":"set","p":"url","pt":"msg","to":"\"http://example.com?id=\" & $$.data.client_id","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":500,"y":3260,"wires":[["578e0ba9942b4249","109185722905b64b"]]},{"id":"578e0ba9942b4249","type":"debug","z":"65617ffeb779f51c","name":"url","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"url","targetType":"msg","statusVal":"","statusType":"auto","x":670,"y":3240,"wires":[]},{"id":"109185722905b64b","type":"change","z":"65617ffeb779f51c","name":"simulate api","rules":[{"t":"set","p":"payload","pt":"msg","to":"{ \"id\": 1279000 + $floor($random()*1000), \"name\": \"Customer \" & $string($floor($random()*100)) }","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":170,"y":3320,"wires":[["901d46811e55754a"]]},{"id":"901d46811e55754a","type":"change","z":"65617ffeb779f51c","name":"","rules":[{"t":"set","p":"data.name","pt":"msg","to":"payload.name","tot":"msg"},{"t":"set","p":"data.name_id","pt":"msg","to":"payload.id","tot":"msg"},{"t":"set","p":"url","pt":"msg","to":"\"http://example.com?id=\" & $$.data.api_id","tot":"jsonata"},{"t":"set","p":"headers","pt":"msg","to":"{}","tot":"json"}],"action":"","property":"","from":"","to":"","reg":false,"x":380,"y":3320,"wires":[["eb5791a303f93fa8","36a1d6dd4314ed2f"]]},{"id":"ccb8ad3b40f8899d","type":"http request","z":"65617ffeb779f51c","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":190,"y":3360,"wires":[["901d46811e55754a"]]},{"id":"eb5791a303f93fa8","type":"debug","z":"65617ffeb779f51c","name":"payload name api","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":730,"y":3280,"wires":[]},{"id":"36a1d6dd4314ed2f","type":"change","z":"65617ffeb779f51c","name":"simulate api","rules":[{"t":"set","p":"payload","pt":"msg","to":"{ \"id\": 1279000 + $floor($random()*1000), \"doc\": \"doc/ \" & $string($floor($random()*100)) }","tot":"jsonata"}],"action":"","property":"","from":"","to":"","reg":false,"x":570,"y":3320,"wires":[["3c87743ae2bb7bf2"]]},{"id":"3c87743ae2bb7bf2","type":"change","z":"65617ffeb779f51c","name":"","rules":[{"t":"set","p":"data.doc","pt":"msg","to":"payload.doc","tot":"msg"},{"t":"move","p":"data","pt":"msg","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":760,"y":3320,"wires":[["cd5600d365cc86d0","e17479ce6011522c"]]},{"id":"c6af55aee3ac531c","type":"http request","z":"65617ffeb779f51c","name":"","method":"GET","ret":"txt","paytoqs":"ignore","url":"","tls":"","persist":false,"proxy":"","insecureHTTPParser":false,"authType":"","senderr":false,"headers":[],"x":590,"y":3360,"wires":[["3c87743ae2bb7bf2"]]},{"id":"cd5600d365cc86d0","type":"join","z":"65617ffeb779f51c","name":"","mode":"auto","build":"object","property":"payload","propertyType":"msg","key":"topic","joiner":"\\n","joinerType":"str","accumulate":true,"timeout":"","count":"","reduceRight":false,"reduceExp":"","reduceInit":"","reduceInitType":"","reduceFixup":"","x":770,"y":3400,"wires":[["537fd33757cdbe4f"]]},{"id":"e17479ce6011522c","type":"debug","z":"65617ffeb779f51c","name":"payload doc api","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":960,"y":3280,"wires":[]},{"id":"537fd33757cdbe4f","type":"debug","z":"65617ffeb779f51c","name":"joined payloads","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":820,"y":3460,"wires":[]}]
[edit] Added further example with simulated api returns.