Back to Nodes

tese.io

Last updated Aug 4, 2026

n8n community nodes for TESE — ESG external API, Tesera AI, OCR, voice entry, anomaly detection, climate risk, platform triggers, webhook triggers, and workflow finalize

1,636 Weekly Downloads
1,636 Monthly Downloads

Included Nodes

tese.io
Tesera AI
tese.io OCR
tese.io Voice Entry
tese.io Anomaly
tese.io Climate
tese.io Platform Trigger
tese.io Trigger
tese.io Finalize

Description

n8n-nodes-tese

This is an n8n community node package. It lets you integrate TESE ESG workflows with n8n — trigger formula/aggregation webhooks, call the external API, and finalize results back to TESE.

Installation

Follow the n8n community nodes installation guide.

npm (self-hosted n8n)

cd ~/.n8n/custom
npm install n8n-nodes-tese

Restart n8n after installing.

Development install

git clone https://github.com/tese-io/n8n-nodes-tese.git
cd n8n-nodes-tese
npm install
npm run build
npm run dev

The dev command starts n8n on http://localhost:5678 with hot reload.

Nodes

| Node | Type | Description |
|——|——|————-|
| tese.io | Action | CRUD + FQL operations against tese.io external API |
| tese.io Trigger | Trigger | Webhook for activity formula and aggregation events |
| tese.io Finalize | Action | Send computed results to tese.io finalize endpoint |

Operations (tese.io node)

Core (v0.1)

Facility, Activity, Metric Catalog, ESG Data, Framework, Audit Request, Report

ESG workflow (v0.2)

Answer Bank, Question Bank, Aggregation, Formula Execution, Sustainability Target, Emission Factor, Framework Pack, Framework Pack Answer, Normalised Answer Bank, Composite KPI, Materiality Assessment, Validation Bank, Reporting Covenant, Evidence Manager, SPT, Device

Reporting & tasks (v0.3)

Reporting Cycle, Task Approval, Task Issue, Task Workflow

See LEARNING.md for the full API parity matrix.

Facility

List, Get, FQL Query, Create, Update, Delete

Activity

List, Get, Create, Update, Archive

Metric Catalog

List, Get, Get By Framework, FQL Query, Resolve By Codes, Get Filters, Create, Update, Delete

ESG Data

FQL Query, Get By Date Range, Get By Category, Get, Create, Update, Delete

Framework

List, Get, FQL Query, Create, Update, Delete

Audit Request

FQL Query, Get, Get By Status, Get User Accessible, Create, Update, Add Message, Delete

Report

List, Get, FQL Query, Get By Period, Check Published Exists, Submit For Review, Approve, Reject

Credentials

Create a tese.io API credential in n8n:

1. Open CredentialsAdd credential → search tese.io API
2. Set Base URL to your TESE backend (default https://api.tese.io)
3. Paste your tenant API Key from TESE Settings → External API keys
4. Click Test — confirms auth against GET /api/v3/external/facilities?limit=1

| Field | Value |
|——-|——-|
| Base URL | https://api.tese.io (or your self-hosted backend) |
| API Key | Tenant external API key from TESE Settings |

Authentication uses Authorization: Bearer . Credentials are stored encrypted by n8n (not by this package).

Example workflow

Import docs/examples/aggregation-finalize-workflow.json into n8n:

1. tese.io Trigger (Activity Aggregation) receives the webhook payload from TESE
2. Code node aggregates activity values
3. tese.io Finalize posts the result back (uses finalize_token from the trigger when present)

Typical workflow

1. Add tese.io Trigger — choose Activity Formula or Activity Aggregation
2. Copy the webhook URL into your TESE question n8n config
3. Process the payload in n8n
4. Add tese.io Finalize — set value/unit and finalize back to TESE

Use Test workflow on the trigger to load sample fixtures without a live webhook.

Compatibility

Version history

0.3.4

Sync package-lock version with package.json after dependency audit.

0.3.3

Replace placeholder icons with official TESE logo from brand assets. Fix creator template example workflow (eventType, sticky notes, connections).

0.3.2

Verification prep: GitHub Actions publish workflow fix, CI tests, npm provenance config, tese-io author metadata, example workflow JSON.

0.3.1

Add unit tests for v0.3 actions, shared helpers, and credentials. Credential test uses v3 external facilities endpoint.

0.3.0

Add Reporting Cycle, Task Approval, Task Issue, and Task Workflow resources.

0.2.0

Add 16 v3 external API resources (answer bank, question bank, aggregation, formula execution, and more). Refactor action handlers into modular nodes/Tese/actions/ structure. Add question bank loadOptions.

0.1.1

Rebrand node and credential display names to tese.io (internal node IDs unchanged).

0.1.0

Initial release with tese.io action node, tese.io Trigger, and tese.io Finalize nodes.