n8n community nodes for SaleSmartly.
Install the published community package:
npm install n8n-nodes-salesmartly-npmImportant:
- The exact npm package name is
n8n-nodes-salesmartly-npm. - Use this exact spelling in the n8n Creator submission and during local installation tests.
- Trigger:
SaleSmartly Message Trigger(salesmartlyMessageTrigger) - Action:
SaleSmartly(getCustomerByChatUser)
Create credentials: SaleSmartly API
Base URL: e.g.https://developer.salesmartly.com(production environment)Token: the value used as request headern8n-token
The trigger expects the webhook body like:
{
"event": "message",
"data": "{\"chat_user_id\":\"xxx\",\"chat_user\":{\"projectId\":1},\"mid\":\"m1\",\"send_time\":1700000000,\"msg_type\":\"text\",\"msg\":\"hi\"}"
}Notes:
datais a stringified JSON and will be parsed again in the node.
Build:
npm install
npm run buildTest:
npm testSee dev-n8n/docker-compose.yml.
To reproduce the installation check locally:
docker compose up -dThen install the package inside n8n using the exact package name:
npm install n8n-nodes-salesmartly-npm