{
  "name": "Kick Off Onboarding in Notion When a New Customer Signs Up via a signup webhook",
  "nodes": [
    {
      "name": "Webhook",
      "type": "n8n-nodes-base.webhook",
      "typeVersion": 1,
      "parameters": {
        "httpMethod": "POST",
        "path": "new-signup",
        "responseMode": "onReceived",
        "options": {}
      },
      "notes": "Copy this node's webhook URL into the source tool as the POST endpoint.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Standardise",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3,
      "parameters": {
        "assignments": {
          "assignments": [
            {
              "id": "1257",
              "name": "email",
              "value": "={{ $json.customer.email }}",
              "type": "string"
            },
            {
              "id": "1258",
              "name": "name",
              "value": "={{ $json.customer.name }}",
              "type": "string"
            },
            {
              "id": "1259",
              "name": "plan",
              "value": "={{ $json.plan }}",
              "type": "string"
            }
          ]
        },
        "options": {}
      },
      "notes": "",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Notion — Onboarding Page",
      "type": "n8n-nodes-base.notion",
      "typeVersion": 2,
      "parameters": {
        "operation": "create"
      },
      "notes": "Create an onboarding tracker.",
      "position": [
        740,
        300
      ]
    },
    {
      "name": "Respond / Finish",
      "type": "n8n-nodes-base.noOp",
      "typeVersion": 1,
      "parameters": {},
      "notes": "End of flow — extend with extra steps as needed.",
      "position": [
        980,
        300
      ]
    }
  ],
  "connections": {
    "Webhook": {
      "main": [
        [
          {
            "node": "Standardise",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Standardise": {
      "main": [
        [
          {
            "node": "Notion — Onboarding Page",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Notion — Onboarding Page": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
