Move saved credentials between n8n instances with a simple guided form. Users pick the destination and the exact credential, and the system copies it securely. Great for admins who run test, staging, and production and want a fast and safe handoff.
The flow starts with a form trigger that launches the process. A Set node stores a list of remote instances with name, base URL, and API key. The workflow exports all local credentials using the command line, reads the export file, and converts it to JSON. Code nodes build dropdown lists for instance names and credential names so users can choose from real data. After selection, the data is prepared and sent to the target instance with an HTTP POST to the credentials endpoint using the API key header. Success and error pages confirm the result.
Setup needs API access on each destination instance and command line access on the source. Protect the form with Basic Auth and double check each base URL includes the API path. Expect a big time win by removing manual export and import steps and fewer mistakes from copy and paste. Use this for environment sync, organization moves, or quick credential cloning for new teams.