n8n Integration
Use CallMeLater in n8n visual workflows with the community node package.
Installation
n8n Desktop / Cloud
- Go to Settings → Community Nodes
- Click Install a community node
- Enter
n8n-nodes-callmelater - Click Install
Self-hosted n8n
npm install n8n-nodes-callmelater
Restart your n8n instance after installing.
Credentials Setup
- Sign up at callmelater.io
- Go to Settings → API Tokens and create a token with
read+writescopes - In n8n, create CallMeLater API credentials with your token
Nodes
CallMeLater (Action Node)
| Operation | Description |
|---|---|
| Create Webhook | Schedule an HTTP request for later |
| Create Approval | Send an approval request to recipients |
| Get Action | Retrieve details of an action |
| Cancel Action | Cancel a scheduled action |
CallMeLater Trigger
Starts your workflow when CallMeLater events occur:
| Event | Description |
|---|---|
| Reminder Responded | Someone confirmed, declined, or snoozed |
| Action Executed | A webhook completed successfully |
| Action Failed | A webhook failed after all retries |
| Action Expired | A reminder expired without response |
Example Workflows
Deployment approval
GitHub Trigger → Build & Test → CallMeLater (Create Approval) → CallMeLater Trigger → Deploy
- GitHub push triggers the workflow
- Build and test steps run
- CallMeLater sends approval request to the ops team
- When someone approves, the trigger fires and deployment continues
Scheduled follow-up
New Customer → CallMeLater (Wait 3 days) → Send Welcome Email
Invoice reminder with escalation
Invoice Created → CallMeLater (Wait 7 days) → Check Payment → If Unpaid: CallMeLater (Approval to Manager)
Webhook Setup
For the CallMeLater Trigger to receive events:
- Create a workflow with the CallMeLater Trigger node
- Copy the Webhook URL shown in the node
- When creating actions via the CallMeLater node, paste this URL as the Callback URL
Signature verification
- Generate a random secret string
- Set it as
webhook_secretwhen creating actions - Enter the same secret in the CallMeLater Trigger node's Webhook Secret field