Description
@acvire/n8n-nodes-acvire
n8n Community Node für die Acvire API – inkl. Bearer-Auth und Lead-Operations (list, get, create).
Installation (lokal entwickeln)
git clone <repo-url> n8n-nodes-acvire
cd n8n-nodes-acvire
npm i
npm run build
In n8n laden:
- Über Community Nodes → Install from file (ZIP der
dist-Artefakte) oder - Via ENV (Self-hosted):
N8N_COMMUNITY_PACKAGES=@acvire/n8n-nodes-acvire
Konfiguration
In n8n unter Credentials → Acvire API:
- Base URL:
https://acvire.com/api/v1 - API Token: dein Bearer-Token (wird als
Authorization: Bearer <token>gesendet).
Verfügbare Ressourcen & Operationen
Lead
- List:
GET /leads?ref_code=<code>→ liefert Liste der Leads eines Projekts - Get:
GET /leads/:id - Create:
POST /leadsBody{ ref_code, lead: {...} }
Hinweis: Paginierung kann je nach API erweitert werden (Cursor/Limit).
Beispiel
- Node Acvire → Lead / List →
ref_code=abc123 - Ergebnis in Google Sheets anhängen.
Publish (optional)
npm version patch
npm publish --access public
(Lizenz: MIT)