AutomationFlowsWeb Scraping › Coccinelle - Salesforce Integration

Coccinelle - Salesforce Integration

Coccinelle - Salesforce Integration. Uses salesforce, httpRequest. Webhook trigger; 7 nodes.

Webhook trigger★★★★☆ complexity7 nodesSalesforceHTTP Request
Web Scraping Trigger: Webhook Nodes: 7 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
{
  "name": "Coccinelle - Salesforce Integration",
  "nodes": [
    {
      "parameters": {
        "httpMethod": "POST",
        "path": "coccinelle/salesforce",
        "options": {}
      },
      "id": "webhook-salesforce",
      "name": "Webhook Coccinelle",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 2,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "conditions": {
          "options": {
            "caseSensitive": true,
            "leftValue": "",
            "typeValidation": "strict"
          },
          "conditions": [
            {
              "id": "condition-action",
              "leftValue": "={{ $json.action }}",
              "rightValue": "create_lead",
              "operator": {
                "type": "string",
                "operation": "equals"
              }
            }
          ],
          "combinator": "and"
        },
        "options": {}
      },
      "id": "switch-action",
      "name": "Route by Action",
      "type": "n8n-nodes-base.switch",
      "typeVersion": 3,
      "position": [
        470,
        300
      ]
    },
    {
      "parameters": {
        "operation": "create",
        "leadFields": {
          "values": [
            {
              "fieldId": "FirstName",
              "fieldValue": "={{ $json.data.first_name }}"
            },
            {
              "fieldId": "LastName",
              "fieldValue": "={{ $json.data.last_name || 'Unknown' }}"
            },
            {
              "fieldId": "Email",
              "fieldValue": "={{ $json.data.email }}"
            },
            {
              "fieldId": "Phone",
              "fieldValue": "={{ $json.data.phone }}"
            },
            {
              "fieldId": "Company",
              "fieldValue": "={{ $json.data.company || 'N/A' }}"
            },
            {
              "fieldId": "LeadSource",
              "fieldValue": "Coccinelle AI"
            },
            {
              "fieldId": "Description",
              "fieldValue": "={{ $json.data.notes || 'Lead from Coccinelle AI Voice Agent' }}"
            }
          ]
        }
      },
      "id": "salesforce-create-lead",
      "name": "Create Lead in Salesforce",
      "type": "n8n-nodes-base.salesforce",
      "typeVersion": 1,
      "position": [
        700,
        200
      ],
      "credentials": {
        "salesforceOAuth2Api": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "update",
        "leadId": "={{ $json.data.salesforce_id }}",
        "updateFields": {
          "values": [
            {
              "fieldId": "Status",
              "fieldValue": "={{ $json.data.status }}"
            },
            {
              "fieldId": "Description",
              "fieldValue": "={{ $json.data.notes }}"
            }
          ]
        }
      },
      "id": "salesforce-update-lead",
      "name": "Update Lead in Salesforce",
      "type": "n8n-nodes-base.salesforce",
      "typeVersion": 1,
      "position": [
        700,
        400
      ],
      "credentials": {
        "salesforceOAuth2Api": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "operation": "create",
        "taskFields": {
          "values": [
            {
              "fieldId": "Subject",
              "fieldValue": "={{ $json.data.subject || 'Follow-up from Coccinelle AI' }}"
            },
            {
              "fieldId": "WhoId",
              "fieldValue": "={{ $json.data.salesforce_id }}"
            },
            {
              "fieldId": "ActivityDate",
              "fieldValue": "={{ $json.data.due_date || $now.plus(1, 'day').toISODate() }}"
            },
            {
              "fieldId": "Description",
              "fieldValue": "={{ $json.data.description }}"
            },
            {
              "fieldId": "Priority",
              "fieldValue": "={{ $json.data.priority || 'Normal' }}"
            }
          ]
        }
      },
      "id": "salesforce-create-task",
      "name": "Create Task in Salesforce",
      "type": "n8n-nodes-base.salesforce",
      "typeVersion": 1,
      "position": [
        700,
        600
      ],
      "credentials": {
        "salesforceOAuth2Api": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "method": "POST",
        "url": "={{ $json.callback_url }}",
        "sendBody": true,
        "bodyParameters": {
          "parameters": [
            {
              "name": "success",
              "value": "true"
            },
            {
              "name": "salesforce_id",
              "value": "={{ $json.id }}"
            },
            {
              "name": "message",
              "value": "Lead synced to Salesforce"
            }
          ]
        },
        "options": {}
      },
      "id": "callback-coccinelle",
      "name": "Callback to Coccinelle",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4.2,
      "position": [
        920,
        300
      ]
    },
    {
      "parameters": {
        "respondWith": "json",
        "responseBody": "={{ JSON.stringify({ success: true, message: 'Salesforce sync initiated' }) }}",
        "options": {}
      },
      "id": "respond-webhook",
      "name": "Respond to Webhook",
      "type": "n8n-nodes-base.respondToWebhook",
      "typeVersion": 1.1,
      "position": [
        1140,
        300
      ]
    }
  ],
  "connections": {
    "Webhook Coccinelle": {
      "main": [
        [
          {
            "node": "Route by Action",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Route by Action": {
      "main": [
        [
          {
            "node": "Create Lead in Salesforce",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Update Lead in Salesforce",
            "type": "main",
            "index": 0
          }
        ],
        [
          {
            "node": "Create Task in Salesforce",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Lead in Salesforce": {
      "main": [
        [
          {
            "node": "Callback to Coccinelle",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Update Lead in Salesforce": {
      "main": [
        [
          {
            "node": "Callback to Coccinelle",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Create Task in Salesforce": {
      "main": [
        [
          {
            "node": "Callback to Coccinelle",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Callback to Coccinelle": {
      "main": [
        [
          {
            "node": "Respond to Webhook",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "settings": {
    "executionOrder": "v1"
  },
  "staticData": null,
  "tags": [
    {
      "name": "Coccinelle",
      "createdAt": "2024-01-01T00:00:00.000Z",
      "updatedAt": "2024-01-01T00:00:00.000Z"
    },
    {
      "name": "CRM",
      "createdAt": "2024-01-01T00:00:00.000Z",
      "updatedAt": "2024-01-01T00:00:00.000Z"
    }
  ],
  "triggerCount": 1,
  "active": false
}

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

Coccinelle - Salesforce Integration. Uses salesforce, httpRequest. Webhook trigger; 7 nodes.

Source: https://github.com/Agentic-Solutions/coccinelle-ai/blob/59fc77f08a288a24abc9080ff4fdebb76064a0dc/n8n-workflows/salesforce-integration.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

This n8n template provides enterprise-level version control for your workflows using GitHub integration. Stop losing hours to broken workflows and manual exports – get proper commit history, visual di

n8n, Execute Workflow Trigger, HTTP Request +1
Web Scraping

This flow creates dummy files for every item added in your *Arrs (Radarr/Sonarr) with the tag .

HTTP Request, Ssh
Web Scraping

This workflow receives webhook requests from a content calendar and uses the X API v2 to publish text posts, threads, image/video posts, and polls, as well as delete existing posts and run a credentia

HTTP Request
Web Scraping

This workflow acts as a central API gateway for all technical indicator agents in the Binance Spot Market Quant AI system. It listens for incoming webhook requests and dynamically routes them to the c

HTTP Request
Web Scraping

Sign PDF documents with legally-compliant digital signatures using X.509 certificates. Supports multiple PAdES signature levels (B, T, LT, LTA) with optional visible stamps.

Execute Command, HTTP Request, Read Write File +1