{
  "name": "Celebrate Every Closed-Won monday.com Deal in Slack",
  "nodes": [
    {
      "name": "monday.com — Deal Won",
      "type": "n8n-nodes-base.httpRequest",
      "typeVersion": 4,
      "parameters": {
        "method": "POST",
        "url": "https://api.example.com/replace-with-real-endpoint",
        "sendBody": true,
        "options": {}
      },
      "notes": "monday.com has no dedicated n8n node — use an HTTP Request to the monday.com API. Trigger on the Closed-Won stage.",
      "position": [
        260,
        300
      ]
    },
    {
      "name": "Deal Details",
      "type": "n8n-nodes-base.set",
      "typeVersion": 3,
      "parameters": {
        "assignments": {
          "assignments": [
            {
              "id": "1063",
              "name": "deal_name",
              "value": "={{ $json.properties.dealname }}",
              "type": "string"
            },
            {
              "id": "1064",
              "name": "amount",
              "value": "={{ $json.properties.amount }}",
              "type": "string"
            },
            {
              "id": "1065",
              "name": "owner",
              "value": "={{ $json.properties.owner }}",
              "type": "string"
            }
          ]
        },
        "options": {}
      },
      "notes": "",
      "position": [
        500,
        300
      ]
    },
    {
      "name": "Notify Slack",
      "type": "n8n-nodes-base.slack",
      "typeVersion": 2,
      "parameters": {
        "text": "=🎉 Deal won: {{ $json.deal_name }} — {{ $json.amount }} ({{ $json.owner }})"
      },
      "notes": "Connect this channel's credential.",
      "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": {
    "monday.com — Deal Won": {
      "main": [
        [
          {
            "node": "Deal Details",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Deal Details": {
      "main": [
        [
          {
            "node": "Notify Slack",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Notify Slack": {
      "main": [
        [
          {
            "node": "Respond / Finish",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
