仕事をPDFに変換

初級

これはHR, Multimodal AI分野の自動化ワークフローで、5個のノードを含みます。主にDropbox, FormTrigger, HttpRequest, ConvertToFile, ExtractFromFileなどのノードを使用。 フォーム、Dropbox、Foxit PDF を利用した求人情報作成の自動化

前提条件
  • ターゲットAPIの認証情報が必要な場合あり
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
  "id": "DpHO7BwAZOzx9rMs",
  "meta": {
    "instanceId": "8a623c3f1a4c9388f43b80af022dca52562aec4339b44f00a07491999dffc00f",
    "templateCredsSetupCompleted": true
  },
  "name": "Job to PDF",
  "tags": [],
  "nodes": [
    {
      "id": "6a063c7c-07de-4972-9059-78653e462658",
      "name": "フォーム送信時",
      "type": "n8n-nodes-base.formTrigger",
      "position": [
        -420,
        -160
      ],
      "webhookId": "371c4f42-e308-4d23-9b64-ee33e9e05c38",
      "parameters": {
        "options": {},
        "formTitle": "Job Posting Form",
        "formFields": {
          "values": [
            {
              "fieldLabel": "Job Position",
              "requiredField": true
            },
            {
              "fieldType": "number",
              "fieldLabel": "Salary",
              "requiredField": true
            },
            {
              "fieldType": "textarea",
              "fieldLabel": "Responsibilities",
              "requiredField": true
            },
            {
              "fieldLabel": "Office Location",
              "requiredField": true
            }
          ]
        }
      },
      "typeVersion": 2.2
    },
    {
      "id": "ac91a3f6-b09b-4ef2-88c3-622c31e21e84",
      "name": "Dropbox",
      "type": "n8n-nodes-base.dropbox",
      "position": [
        -200,
        -160
      ],
      "parameters": {
        "path": "/Foxit/docgen_sample_job_offer.docx",
        "operation": "download",
        "authentication": "oAuth2"
      },
      "credentials": {
        "dropboxOAuth2Api": {
          "id": "HZ5ZkcwTwdnGNxbY",
          "name": "Dropbox account"
        }
      },
      "typeVersion": 1
    },
    {
      "id": "43fbf7c3-12ca-434a-aa69-9a525036d2d5",
      "name": "ドキュメント生成",
      "type": "n8n-nodes-base.httpRequest",
      "position": [
        240,
        -160
      ],
      "parameters": {
        "url": "https://na1.fusion.foxit.com/document-generation/api/GenerateDocumentBase64",
        "method": "POST",
        "options": {},
        "jsonBody": "={\n\"outputFormat\":\"pdf\",\n\"currencyCulture\":\"en-US\",\n\"base64FileString\":\"{{ $json.data }}\",\n\"documentValues\":{\n  \"jobPosition\":\"{{ $('On form submission').item.json['Job Position'] }}\",\n\"salary\":{{ $('On form submission').item.json.Salary }},\n\"office\":\"{{ $('On form submission').item.json['Office Location'] }}\",\n\"responsibilities\":\"{{ $('On form submission').item.json.Responsibilities }}\"\n  }\n}",
        "sendBody": true,
        "specifyBody": "json",
        "authentication": "genericCredentialType",
        "genericAuthType": "httpCustomAuth"
      },
      "credentials": {
        "httpCustomAuth": {
          "id": "z24lOhJz73Y4J8F0",
          "name": "DocGen Account"
        }
      },
      "typeVersion": 4.2
    },
    {
      "id": "0020993b-45e0-4197-823a-710a60ba9cae",
      "name": "WordをB64に変換",
      "type": "n8n-nodes-base.extractFromFile",
      "position": [
        20,
        -160
      ],
      "parameters": {
        "options": {},
        "operation": "binaryToPropery"
      },
      "typeVersion": 1
    },
    {
      "id": "4b8ce696-6828-401e-b0e9-54d2ea14049e",
      "name": "ファイルに変換",
      "type": "n8n-nodes-base.convertToFile",
      "position": [
        460,
        -160
      ],
      "parameters": {
        "options": {},
        "operation": "toBinary",
        "sourceProperty": "base64FileString"
      },
      "typeVersion": 1.1
    }
  ],
  "active": true,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "36411980-23bc-4fe3-82b3-95f931e1f046",
  "connections": {
    "ac91a3f6-b09b-4ef2-88c3-622c31e21e84": {
      "main": [
        [
          {
            "node": "0020993b-45e0-4197-823a-710a60ba9cae",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "4b8ce696-6828-401e-b0e9-54d2ea14049e": {
      "main": [
        []
      ]
    },
    "6a063c7c-07de-4972-9059-78653e462658": {
      "main": [
        [
          {
            "node": "ac91a3f6-b09b-4ef2-88c3-622c31e21e84",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "0020993b-45e0-4197-823a-710a60ba9cae": {
      "main": [
        [
          {
            "node": "43fbf7c3-12ca-434a-aa69-9a525036d2d5",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "43fbf7c3-12ca-434a-aa69-9a525036d2d5": {
      "main": [
        [
          {
            "node": "4b8ce696-6828-401e-b0e9-54d2ea14049e",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
よくある質問

このワークフローの使い方は?

上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。

このワークフローはどんな場面に適していますか?

初級 - 人事, マルチモーダルAI

有料ですか?

このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。

ワークフロー情報
難易度
初級
ノード数5
カテゴリー2
ノードタイプ5
難易度説明

n8n初心者向け、1-5ノードのシンプルなワークフロー

作成者
Raymond Camden

Raymond Camden

@raymondcamden

As an API Evangelist for Foxit, Raymond Camden specializes in the power of APIs, the web platform, and generative AI. A prolific author and seasoned presenter, he has been a prominent voice in the developer community for over two decades. You can explore his work and insights on his long-running blog at www.raymondcamden.com or reach him directly at raymondcamden@gmail.com.

外部リンク
n8n.ioで表示

このワークフローを共有

カテゴリー

カテゴリー: 34