AutomationFlowsWeb Scraping › Item Sync Workflow

Item Sync Workflow

Item-Sync-Workflow. Uses httpRequest, n8n-nodes-recombee-api, debugHelper. Event-driven trigger; 8 nodes.

Event trigger★★★★☆ complexity8 nodesHTTP RequestN8N Nodes Recombee ApiDebug Helper
Web Scraping Trigger: Event Nodes: 8 Complexity: ★★★★☆ Added:

The workflow JSON

Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →

Download .json
{
  "nodes": [
    {
      "parameters": {},
      "type": "n8n-nodes-base.manualTrigger",
      "typeVersion": 1,
      "position": [
        -440,
        -10
      ],
      "id": "0937013f-5a49-4a00-af43-635bca2e92a4",
      "name": "When clicking \u2018Execute workflow\u2019"
    },
    {
      "parameters": {
        "url": "https://dummyjson.com/products",
        "sendQuery": true,
        "queryParameters": {
          "parameters": [
            {
              "name": "limit",
              "value": "500"
            }
          ]
        },
        "options": {}
      },
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        -220,
        -10
      ],
      "id": "8fbdb41b-463d-4eba-bf8c-093d7b08a717",
      "name": "HTTP Request"
    },
    {
      "parameters": {
        "batchSize": "=50",
        "options": {
          "reset": false
        }
      },
      "type": "n8n-nodes-base.splitInBatches",
      "typeVersion": 3,
      "position": [
        220,
        -10
      ],
      "id": "9d226ceb-f11f-414c-8e45-bab35bd1e880",
      "name": "Loop Over Items"
    },
    {
      "parameters": {
        "jsCode": "return $input.first().json.products ;"
      },
      "type": "n8n-nodes-base.code",
      "typeVersion": 2,
      "position": [
        0,
        -10
      ],
      "id": "2e21fff1-a5a9-4036-b172-cbd5d2d5d85c",
      "name": "Code"
    },
    {
      "parameters": {
        "content": "## Product Properties \nyou need to prepare your product properties at recombee admin to match your user object &  **pay an  extra eye** to it  ",
        "color": 6
      },
      "type": "n8n-nodes-base.stickyNote",
      "typeVersion": 1,
      "position": [
        340,
        -200
      ],
      "id": "903bcad6-84e7-48a0-87e1-e5348a5a6a7b",
      "name": "Sticky Note"
    },
    {
      "parameters": {
        "content": "##  Step 2 : Sync your Products ",
        "height": 100,
        "width": 380,
        "color": 3
      },
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -420,
        -140
      ],
      "typeVersion": 1,
      "id": "f0137ff3-5325-4768-9705-8115e72a876b",
      "name": "Sticky Note1"
    },
    {
      "parameters": {
        "itemId": "={{ $json.id }}",
        "values": "={\n \"title\": {{ $json.title.toJsonString() }},\n \"description\": {{ $json.description.toJsonString() }},\n \"category\": {{ $json.category.toJsonString() }},\n \"price\": {{ $json.price.toString().toJsonString() }},\n \"discountPercentage\": {{ $json.discountPercentage.toString().toJsonString() }},\n \"rating\": {{ $json.rating.toString().toJsonString() }},\n \"tags\": [ {{ $json.tags.map(item => item.toString().toJsonString()) }}],\n \"brand\" : {{ $json.brand?.toJsonString() ?? '?'.toJsonString() }},\n \"weight\" : {{ $json.weight?.toString().toJsonString() }},\n \"inStock\" : {{ $json.availabilityStatus.toJsonString() }},\n \"returnPolicy\": {{ $json.returnPolicy.toJsonString() }},\n \"image\" : {{ $json.images[0].toJsonString() }},\n \"images\": [ {{ $json.images.map(item => item.toString().toJsonString()) }}],\n \"thumbnail\" : {{ $json.thumbnail.toJsonString() }}\n }",
        "cascadeCreate": true
      },
      "type": "n8n-nodes-recombee-api.recombeeSetItemValues",
      "typeVersion": 1,
      "position": [
        440,
        80
      ],
      "id": "e200e691-269f-47d5-8546-9211547b398c",
      "name": "SetItemValues",
      "credentials": {
        "recombeeCredentialsApi": {
          "name": "<your credential>"
        }
      },
      "onError": "continueErrorOutput"
    },
    {
      "parameters": {},
      "type": "n8n-nodes-base.debugHelper",
      "typeVersion": 1,
      "position": [
        660,
        -10
      ],
      "id": "2bd9dd05-94d2-47cd-9e3a-4a54cfb301ff",
      "name": "DebugHelper"
    }
  ],
  "connections": {
    "When clicking \u2018Execute workflow\u2019": {
      "main": [
        [
          {
            "node": "HTTP Request",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "HTTP Request": {
      "main": [
        [
          {
            "node": "Code",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Loop Over Items": {
      "main": [
        [],
        [
          {
            "node": "SetItemValues",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Code": {
      "main": [
        [
          {
            "node": "Loop Over Items",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "SetItemValues": {
      "main": [
        [
          {
            "node": "Loop Over Items",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "DebugHelper",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "meta": {
    "templateCredsSetupCompleted": true
  }
}

Credentials you'll need

Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.

Pro

For the full experience including quality scoring and batch install features for each workflow upgrade to Pro

About this workflow

Item-Sync-Workflow. Uses httpRequest, n8n-nodes-recombee-api, debugHelper. Event-driven trigger; 8 nodes.

Source: https://github.com/tawfekov/n8n-nodes-recombee-api/blob/4f34f5c770aa0bbecc26ae6bde16fed86285ffe2/examples/item-sync-workflow.json — original creator credit. Request a take-down →

More Web Scraping workflows → · Browse all categories →

Related workflows

Workflows that share integrations, category, or trigger type with this one. All free to copy and import.

Web Scraping

User-Sync-Workflow. Uses httpRequest, n8n-nodes-recombee-api. Event-driven trigger; 8 nodes.

HTTP Request, N8N Nodes Recombee Api
Web Scraping

This workflow allows you to import any workflow from a file or another n8n instance and map the credentials easily. A multi-form setup guides you through the entire process At the beginning you have t

Execute Command, Read Write File, HTTP Request +3
Web Scraping

[n8n] Advanced URL Parsing and Shortening Workflow - Switchy.io Integration. Uses splitInBatches, stickyNote, httpRequest, html. Event-driven trigger; 56 nodes.

HTTP Request, GitHub, Stop And Error +1
Web Scraping

[](https://youtu.be/c7yCZhmMjtI)

HTTP Request, GitHub, Stop And Error +1
Web Scraping

This automation organizes your n8n workflows files into categorizes (Active, Template, Done, Archived) and uploads them directly to a categorized Google Drive folders. It is designed to help users man

Google Drive, HTTP Request, Time Saved