Hello, I am trying to fill a Google Doc template dynamically. My workflow correctly copies the template file (I can see the new file in Google Drive), but the final HTTP Request node fails with a “404 Resource not found” error. **Workflow:** My workflow is linear: `… → Copy file → Code Node → HTTP Request` **Diagnosis:** The 404 error means the Document ID in the URL is incorrect or missing. I have confirmed that the `Copy file` node *is* successfully creating a file and its output contains the correct, new `id`. However, this `id` is not being passed correctly to the final HTTP Request node. The expression `{{$json.docId}}` in the URL resolves to undefined. **What I have already tried:** - Confirmed the workflow is perfectly linear. - Confirmed the `Copy file` node is working and creating files. - Inspected the output of the `Copy file` node and confirmed it contains a valid `id`. - Created a brand new, manual Generic OAuth2 Credential with the correct `https://www.googleapis.com/auth/documents\` scope and successfully connected it. The issue seems to be that the data (specifically the `id`) is getting lost between the successful `Copy file` node and the next node in the chain, even with a direct connection. Any help would be greatly appreciated.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.