Official n8n community node for Rynko - the document generation platform with unified template design for PDF and Excel documents.
Starts workflows when document events occur:
- Document Completed - When a document is successfully generated
- Document Failed - When document generation fails
- Batch Completed - When a batch generation completes
Perform document generation operations:
- Generate PDF - Generate a PDF document from a template
- Generate Excel - Generate an Excel document from a template
- Generate Batch - Generate multiple documents from a single template
- Get Job - Get document job details by ID
- List Jobs - List document jobs with filters
- Go to Settings → Community Nodes
- Click Install a community node
- Enter:
n8n-nodes-rynko - Click Install
npm install n8n-nodes-rynkoGenerate an API key in your Rynko dashboard:
- Log in to https://app.rynko.dev
- Go to Settings → API Keys
- Click Create New API Key
- Copy the generated key
- Go to Credentials → New
- Search for "Rynko API"
- Enter your API Key
- Click Save
- Add Rynko node
- Select operation: Generate PDF
- Choose template from dropdown
- Add template variables (optional)
- Optionally specify workspace ID
- Add Rynko node
- Select operation: Generate Excel
- Choose template from dropdown
- Add template variables
- Configure output options
- Add Rynko Trigger node
- Select event: Document Completed
- Connect to your workflow
- Activate workflow
- Add Rynko node
- Select operation: Generate Batch
- Choose template
- Provide array of documents with variables
- Each document in the batch can have different variable values
n8n-rynko/
├── credentials/
│ └── RynkoApi.credentials.ts
├── nodes/
│ └── Rynko/
│ ├── Rynko.node.ts
│ ├── RynkoTrigger.node.ts
│ └── rynko.svg
├── package.json
├── tsconfig.json
├── DEPLOYMENT.md
└── README.md
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
# Lint
npm run lintUses API Key authentication with the Authorization: Bearer header.
Your API key provides access to:
- Generate documents (PDF and Excel)
- Read document job status
- Access templates
- Manage webhook subscriptions
POST /api/v1/documents/generate- Generate single documentPOST /api/v1/documents/generate/batch- Generate batch documentsGET /api/v1/documents/jobs- List/search document jobsGET /api/v1/documents/jobs/:id- Get document job detailsGET /api/v1/templates- List templatesPOST /api/v1/webhook-subscriptions- Subscribe to webhooksDELETE /api/v1/webhook-subscriptions/:id- Unsubscribe
When generating documents, you can optionally specify a workspaceId to generate documents in a specific workspace. If not provided, documents are generated in the user's current workspace.
- Email: support@rynko.dev
- Documentation: https://docs.rynko.dev
- n8n Community: https://community.n8n.io
MIT