Envoi automatique de gros fichiers avec TransferNow

Avancé

Ceci est unContent Creation, Multimodal AIworkflow d'automatisation du domainecontenant 19 nœuds.Utilise principalement des nœuds comme If, Set, Code, Form, Merge. Téléchargement et envoi automatisés de gros fichiers avec TransferNow

Prérequis
  • Peut nécessiter les informations d'identification d'authentification de l'API cible
Aperçu du workflow
Visualisation des connexions entre les nœuds, avec support du zoom et du déplacement
Exporter le workflow
Copiez la configuration JSON suivante dans n8n pour importer et utiliser ce workflow
{
  "id": "IaP1PFerysorkzbn",
  "meta": {
    "instanceId": "a4bfc93e975ca233ac45ed7c9227d84cf5a2329310525917adaf3312e10d5462"
  },
  "name": "Automated Send a Large File with TransferNow",
  "tags": [],
  "nodes": [
    {
      "id": "ae8b10cf-20ea-4975-beba-736b780d7103",
      "name": "Note adhésive",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1488,
        160
      ],
      "parameters": {
        "color": 5,
        "width": 1104,
        "height": 176,
        "content": "## STEP 1\nCreate a FREE account on [TransferNow](https://developers.transfernow.net/). FREE TRIAL 14 DAYS\n\nSet Header Auth in 'HTTP Nodes':\n- NAME: x-api-key\n- VALUE: YOUR_API_KEY"
      },
      "typeVersion": 1
    },
    {
      "id": "d05475bf-b614-4838-a31f-5f42a6c725b2",
      "name": "À la soumission du formulaire",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        1520,
        720
      ],
      "webhookId": "0e6f7af4-c78c-4ce0-a295-df94427ebc16",
      "parameters": {
        "options": {},
        "formTitle": "Upload Form",
        "formFields": {
          "values": [
            {
              "fieldLabel": "Title",
              "requiredField": true
            },
            {
              "fieldType": "textarea",
              "fieldLabel": "Message",
              "requiredField": true
            },
            {
              "fieldType": "email",
              "fieldLabel": "To",
              "requiredField": true
            },
            {
              "fieldType": "file",
              "fieldLabel": "data",
              "multipleFiles": false,
              "requiredField": true
            }
          ]
        },
        "formDescription": "Upload PDF files to send via TransferNow"
      },
      "typeVersion": 2.3
    },
    {
      "id": "d714bb39-527b-4c24-83c1-e715a984899a",
      "name": "Calculer la taille",
      "type": "n8n-nodes-base.code",
      "position": [
        1952,
        544
      ],
      "parameters": {
        "jsCode": "const buffer = await this.helpers.getBinaryDataBuffer(0, 'data');\nconst name = $input.first().binary.data.fileName;\n\nreturn [\n  {\n    json: {\n      name: name,\n      size: buffer.length\n    },\n  },\n];"
      },
      "typeVersion": 2
    },
    {
      "id": "8d391955-47e7-4299-be6a-58e8d1f2bf21",
      "name": "Définir Json",
      "type": "n8n-nodes-base.set",
      "position": [
        2384,
        544
      ],
      "parameters": {
        "mode": "raw",
        "options": {},
        "jsonOutput": "={\n  \"name\": \"{{ $json.name }}\",\n  \"size\": {{ $json.size }}\n}\n"
      },
      "typeVersion": 3.4
    },
    {
      "id": "d4bc1a9d-bffd-4b3b-889f-e605fd258e8d",
      "name": "Définir Transfer",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2832,
        544
      ],
      "parameters": {
        "url": "https://api.transfernow.net/v1/transfers",
        "method": "POST",
        "options": {},
        "jsonBody": "={\n        \"langCode\": \"it\",\n        \"toEmails\": [\"{{ $('On form submission').item.json.To }}\"],\n        \"files\": [{{ (JSON.stringify($json)) }}],\n        \"message\": \"{{ $('On form submission').item.json.Message }}\",\n        \"subject\": \"{{ $('On form submission').item.json.Title }}\",\n        \"validityStart\": \"{{ $now }}\",\n        \"validityEnd\": \"{{ $now.plus({week:1}) }}\",\n        \"allowPreview\": true,\n        \"maxDownloads\": 7\n      }\n\n",
        "sendBody": true,
        "sendHeaders": true,
        "specifyBody": "json",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        }
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "Ds6c0Jvwog49aQNO",
          "name": "Header Auth TransferNow"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "9e60b05f-3fa6-4e10-85ed-bb8e3a4c62bf",
      "name": "Obtenir l'URL de téléversement",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        3312,
        544
      ],
      "parameters": {
        "url": "=https://api.transfernow.net/v1/transfers/{{ $json.transferId }}/files/{{ $json.files[0].id }}/parts/{{ $json.files[0].multipartUpload.parts[0].partNumber }}?uploadId={{ $json.files[0].multipartUpload.uploadId }}",
        "options": {},
        "sendHeaders": true,
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/json"
            }
          ]
        }
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "Ds6c0Jvwog49aQNO",
          "name": "Header Auth TransferNow"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "647c1e4d-4c33-43d0-aaea-c51daac874a6",
      "name": "Téléversement terminé",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        3312,
        752
      ],
      "parameters": {
        "url": "=https://api.transfernow.net/v1/transfers/{{ $('Set Transfer').item.json.transferId }}/upload-done",
        "method": "PUT",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth"
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "Ds6c0Jvwog49aQNO",
          "name": "Header Auth TransferNow"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "2397b257-bfa1-45c0-b80a-c31548019e54",
      "name": "Obtenir les données du transfert",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        3312,
        960
      ],
      "parameters": {
        "url": "=https://api.transfernow.net/v1/transfers/{{ $('Set Transfer').item.json.transferId }}",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth"
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "Ds6c0Jvwog49aQNO",
          "name": "Header Auth TransferNow"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "6688b620-0365-401f-bb85-5a6a8e4b78b5",
      "name": "Obtenir les paramètres",
      "type": "n8n-nodes-base.set",
      "position": [
        3584,
        960
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "625867c4-2859-4b6f-93aa-89148c685328",
              "name": "url_transfer",
              "type": "string",
              "value": "=https://{{ $json.domain }}/dl/{{ $json.id }}/{{ $json.recipients[0].secret }}"
            },
            {
              "id": "f25130a0-d32b-4f0b-b2f0-11f4af955162",
              "name": "email",
              "type": "string",
              "value": "={{ $json.recipients[0].email }}"
            },
            {
              "id": "39ab045d-41cb-475c-940a-12c99e9ca773",
              "name": "name_transfer",
              "type": "string",
              "value": "={{ $json.name }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "c6ff7fd0-0376-4819-9bcb-cfac83d64a3b",
      "name": "Formulaire",
      "type": "n8n-nodes-base.form",
      "position": [
        3808,
        960
      ],
      "webhookId": "1e0bfba1-6859-4767-a65e-600c831d7031",
      "parameters": {
        "options": {},
        "operation": "completion",
        "completionTitle": "Upload complete",
        "completionMessage": "=The files have been sent to the following email address: {{ $json.email }}\nDownload URL: {{ $json.url_transfer }}"
      },
      "typeVersion": 2.3
    },
    {
      "id": "533f9bed-2476-489e-8256-c12ad722d133",
      "name": "Est terminé ?",
      "type": "n8n-nodes-base.if",
      "position": [
        2848,
        880
      ],
      "parameters": {
        "options": {},
        "conditions": {
          "options": {
            "version": 2,
            "leftValue": "",
            "caseSensitive": true,
            "typeValidation": "strict"
          },
          "combinator": "and",
          "conditions": [
            {
              "id": "78609385-4035-4bd1-8e06-36feb4115100",
              "operator": {
                "name": "filter.operator.equals",
                "type": "string",
                "operation": "equals"
              },
              "leftValue": "={{ $json.message }}",
              "rightValue": "OK"
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "0824bec9-fdbd-4fd3-b3e5-5f0cce4aa488",
      "name": "Envoyer le transfert",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2576,
        880
      ],
      "parameters": {
        "url": "=https://api.transfernow.net/v1/transfers/{{ $('Set Transfer').item.json.transferId }}/files/{{ $('Set Transfer').item.json.files[0].id }}/upload-done?uploadId={{ $('Set Transfer').item.json.files[0].multipartUpload.uploadId }}",
        "method": "PUT",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth"
      },
      "credentials": {
        "httpHeaderAuth": {
          "id": "Ds6c0Jvwog49aQNO",
          "name": "Header Auth TransferNow"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "59f81389-6f5a-4664-97fd-bb9b5131066c",
      "name": "Envoyer l'URL de téléversement",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        2272,
        880
      ],
      "parameters": {
        "url": "={{ $json.uploadUrl }}",
        "method": "PUT",
        "options": {
          "response": {
            "response": {
              "fullResponse": true
            }
          }
        },
        "sendBody": true,
        "contentType": "binaryData",
        "sendHeaders": true,
        "headerParameters": {
          "parameters": [
            {
              "name": "Content-Type",
              "value": "application/octet-stream"
            }
          ]
        },
        "inputDataFieldName": "data"
      },
      "typeVersion": 4.2
    },
    {
      "id": "6b7de5f4-b215-4b2a-9e1b-95750a72b0cc",
      "name": "Fusionner",
      "type": "n8n-nodes-base.merge",
      "position": [
        1968,
        880
      ],
      "parameters": {
        "mode": "combine",
        "options": {},
        "combineBy": "combineByPosition"
      },
      "typeVersion": 3.1
    },
    {
      "id": "3eeea705-5ce5-459d-b15f-8b60f9169a94",
      "name": "Note adhésive1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1488,
        -32
      ],
      "parameters": {
        "color": 3,
        "width": 1104,
        "height": 144,
        "content": "#  Automated Send a Large File with TransferNow\nThis workflow creates a user-friendly web form to upload a file, which allows users to upload a **single large file** (*up to 5Gb*) through a custom web form and automatically send it via **TransferNow**, handling the complex multi-part upload process required for **large files**."
      },
      "typeVersion": 1
    },
    {
      "id": "2b546114-5765-4596-98cd-728a554f97f0",
      "name": "Note adhésive2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1920,
        448
      ],
      "parameters": {
        "width": 704,
        "height": 240,
        "content": "## Size\nCalculate the exact size of the file and put it into an array that will be sent to Transfernow"
      },
      "typeVersion": 1
    },
    {
      "id": "ba8993da-18f0-4713-9fe0-399051e84246",
      "name": "Note adhésive3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        2768,
        448
      ],
      "parameters": {
        "width": 704,
        "height": 240,
        "content": "## Upload\nUpload the file to the TransferNow server and create the transfer"
      },
      "typeVersion": 1
    },
    {
      "id": "5fb3a536-4893-4eaf-abbd-b7ef3758a31f",
      "name": "Note adhésive4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        2224,
        800
      ],
      "parameters": {
        "width": 544,
        "height": 240,
        "content": "## Transfer\nCreate file transfer"
      },
      "typeVersion": 1
    },
    {
      "id": "bc3a2893-112f-4dde-ade7-7f82252585e8",
      "name": "Note adhésive5",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        3280,
        880
      ],
      "parameters": {
        "width": 448,
        "height": 240,
        "content": "## Download\nProvides the URL for downloading the file"
      },
      "typeVersion": 1
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "45265b23-20ea-4e48-aea0-575853184536",
  "connections": {
    "6b7de5f4-b215-4b2a-9e1b-95750a72b0cc": {
      "main": [
        [
          {
            "node": "59f81389-6f5a-4664-97fd-bb9b5131066c",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "8d391955-47e7-4299-be6a-58e8d1f2bf21": {
      "main": [
        [
          {
            "node": "d4bc1a9d-bffd-4b3b-889f-e605fd258e8d",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "533f9bed-2476-489e-8256-c12ad722d133": {
      "main": [
        [
          {
            "node": "647c1e4d-4c33-43d0-aaea-c51daac874a6",
            "type": "main",
            "index": 0
          },
          {
            "node": "2397b257-bfa1-45c0-b80a-c31548019e54",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "d4bc1a9d-bffd-4b3b-889f-e605fd258e8d": {
      "main": [
        [
          {
            "node": "9e60b05f-3fa6-4e10-85ed-bb8e3a4c62bf",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "0824bec9-fdbd-4fd3-b3e5-5f0cce4aa488": {
      "main": [
        [
          {
            "node": "533f9bed-2476-489e-8256-c12ad722d133",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "d714bb39-527b-4c24-83c1-e715a984899a": {
      "main": [
        [
          {
            "node": "8d391955-47e7-4299-be6a-58e8d1f2bf21",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "9e60b05f-3fa6-4e10-85ed-bb8e3a4c62bf": {
      "main": [
        [
          {
            "node": "6b7de5f4-b215-4b2a-9e1b-95750a72b0cc",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "6688b620-0365-401f-bb85-5a6a8e4b78b5": {
      "main": [
        [
          {
            "node": "c6ff7fd0-0376-4819-9bcb-cfac83d64a3b",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "59f81389-6f5a-4664-97fd-bb9b5131066c": {
      "main": [
        [
          {
            "node": "0824bec9-fdbd-4fd3-b3e5-5f0cce4aa488",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "2397b257-bfa1-45c0-b80a-c31548019e54": {
      "main": [
        [
          {
            "node": "6688b620-0365-401f-bb85-5a6a8e4b78b5",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "d05475bf-b614-4838-a31f-5f42a6c725b2": {
      "main": [
        [
          {
            "node": "6b7de5f4-b215-4b2a-9e1b-95750a72b0cc",
            "type": "main",
            "index": 1
          },
          {
            "node": "d714bb39-527b-4c24-83c1-e715a984899a",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Foire aux questions

Comment utiliser ce workflow ?

Copiez le code de configuration JSON ci-dessus, créez un nouveau workflow dans votre instance n8n et sélectionnez "Importer depuis le JSON", collez la configuration et modifiez les paramètres d'authentification selon vos besoins.

Dans quelles scénarios ce workflow est-il adapté ?

Avancé - Création de contenu, IA Multimodale

Est-ce payant ?

Ce workflow est entièrement gratuit et peut être utilisé directement. Veuillez noter que les services tiers utilisés dans le workflow (comme l'API OpenAI) peuvent nécessiter un paiement de votre part.

Workflows recommandés

Générer des clips vidéo à partir de vos références d'images multiples
Utiliser Fal.ai VIDU pour créer des vidéos virales à partir d'images de référence et les télécharger sur YouTube/TikTok
If
Set
Code
+
If
Set
Code
20 NœudsDavide
Création de contenu
Génération de vidéos synchronisation labiale
Créer et partager des vidéos d'avatars synchronisés en lèvres avec Infinitalk IA et les télécharger sur TikTok/YouTube
If
Set
Wait
+
If
Set
Wait
18 NœudsDavide
Création de contenu
Version professionnelle de l'automatisation de blog WordPress (recherche approfondie) v2.1 sur le marché
Automatisation de la création de blog optimisé pour le SEO avec GPT-4o, Perplexity AI et support multilingue
If
Set
Xml
+
If
Set
Xml
125 NœudsDaniel Ng
Création de contenu
Rédaction d'articles WordPress avec IA (à partir de quelques mots-clés)
Générateur automatisé d'articles de blog pour WordPress, basé sur GPT-4, DALL-E et Wikipedia
If
Set
Code
+
If
Set
Code
37 NœudsPunit
Création de contenu
Créer des campagnes publicitaires Meta générées par l'IA à partir d'URL de produits en utilisant OpenAI et Firecrawl
Créer des campagnes publicitaires Meta générées par l'IA à partir d'URL de produits avec OpenAI et Firecrawl
If
Set
Code
+
If
Set
Code
40 NœudsAdam Crafts
Création de contenu
Générez des images publicitaires créatives à partir de vos multiples images de référence
Générer des images publicitaires créatives pour Instagram et Facebook à partir d'images de référence avec Seedream v4
If
Set
Code
+
If
Set
Code
20 NœudsDavide
Divers
Informations sur le workflow
Niveau de difficulté
Avancé
Nombre de nœuds19
Catégorie2
Types de nœuds8
Description de la difficulté

Adapté aux utilisateurs avancés, avec des workflows complexes contenant 16+ nœuds

Auteur

Full-stack Web Developer based in Italy specialising in Marketing & AI-powered automations. For business enquiries, send me an email at info@n3w.it or add me on Linkedin.com/in/davideboizza

Liens externes
Voir sur n8n.io

Partager ce workflow

Catégories

Catégories: 34