{
  "name": "Notify Slack when a new Lindo website is created",
  "nodes": [
    {
      "parameters": {
        "event": "website.created"
      },
      "id": "trigger",
      "name": "Lindo Trigger",
      "type": "n8n-nodes-lindo.lindoTrigger",
      "typeVersion": 1,
      "position": [
        250,
        300
      ],
      "credentials": {
        "lindoApi": {
          "name": "<your credential>"
        }
      }
    },
    {
      "parameters": {
        "channel": "#websites",
        "text": "=\ud83c\udf10 New website created in Lindo!\n\n*Name:* {{ $json.data.name }}\n*Domain:* {{ $json.data.domain }}\n*Website ID:* {{ $json.data.website_id }}",
        "otherOptions": {}
      },
      "id": "slack",
      "name": "Slack",
      "type": "n8n-nodes-base.slack",
      "typeVersion": 2.2,
      "position": [
        500,
        300
      ],
      "credentials": {
        "slackApi": {
          "name": "<your credential>"
        }
      }
    }
  ],
  "connections": {
    "Lindo Trigger": {
      "main": [
        [
          {
            "node": "Slack",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  },
  "meta": {
    "templateId": "lindo-new-website-to-slack"
  }
}