transfer_credential
Move n8n credentials between projects or assign them to different owners to reorganize access permissions and workflow ownership.
Instructions
Transfer an n8n credential to a different project or owner
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| newOwnerId | No | ||
| projectId | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"oneOf": [
{
"type": "string"
},
{
"type": "number"
}
]
},
"newOwnerId": {
"type": "string"
},
"projectId": {
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}