n8n-nodes-creatio
v0.3.0
Published
Connect n8n to Creatio CRM platform. Create, read, update, and delete records in any Creatio entity with dynamic field selection and OData filtering.
Downloads
578
Maintainers
Readme
Creatio Node
This node allows you connect N8N to Creatio, the popular Agentic Nocode Platform with an excellent CRM.
Table of Contents
Installation
Follow the installation guide in the n8n community nodes documentation.
Features
- Connect n8n to your Creatio instance
- Create, read, update, and delete records in any Creatio entity
- Upload and download file attachments
- Select entities and fields dynamically
- Execute custom methods on Creatio models
- Store and manage multiple Creatio credentials
Usage
GET
- Choose your Creatio subPath and target fields from the dropdown menus or add manually using an Expression
- Use the optional Filter, Top and Expand filters
POST
- Choose your Creatio subPath from the dropdown menu or add manually using an Expression
- Enter JSON with the data you want to add
PATCH
- Choose your Creatio subPath from the dropdown menu or add manually using an Expression
- Enter ID of record to update
- Enter JSON with the data you want to update
DELETE
- Choose your Creatio subPath from the dropdown menu or add manually using an Expression
- Enter ID of record to delete
Upload File
- Set the Input Binary Field that holds the file (default
data) - Set the Entity Schema Name (the file entity, e.g.
ContactFile,AccountFileorSysFile) - Set Parent Column Name / Parent Column Value to link the file to its parent record (e.g.
Contactand the contact's GUID) - A new file ID GUID is generated automatically; override it (or the file name, MIME type, and
AdditionalParams) under Options if needed - Uploads in a single request — suitable for files up to ~30 MB. Larger files would require chunked upload (not yet supported)
Download File
- Set the Entity Schema Name and the File ID (GUID of the file record)
- The file is written to the binary output field set in Put Output File in Field (default
data)
Example use cases:
- Add new leads or contacts automatically
- Sync data between Creatio and other platforms
- Update records based on external triggers
- Retrieve and process Creatio data for reporting or AI agents
Authentication
Authentication is required. Store your Creatio API credentials securely in n8n before using the node. It is possible that the selected user is not allowed to delete records.
Using this node as an AI Agent tool
This node is exposed to the n8n AI Agent (usableAsTool). To make community nodes available as Agent tools, the n8n instance must be started with:
N8N_COMMUNITY_PACKAGES_ALLOW_TOOL_USAGE=trueThis is a deployment setting on the n8n host (it cannot be configured from inside the package).
OAuth2 (recommended)
Set Authentication to OAuth2 and create a Creatio OAuth2 API credential:
- Creatio URL — your instance base URL, e.g.
https://your-instance.creatio.com - Access Token URL — the Identity Service token endpoint, e.g.
https://your-instance-is.creatio.com/connect/token - Client ID / Client Secret — from the OAuth client registered in Creatio
n8n fetches and refreshes the access token automatically. Legacy username/password authentication remains available by setting Authentication to Username & Password.
Input
The node accepts:
- Storing credentials
- Creatio Tenant selection
- Creatio Entity selection
- Creatio model method execution body parameters
Output
- Output from Creatio
Authentication
All fields required
Resources
Releasing
Releases are published to npm automatically by GitHub Actions with build provenance. No npm token is stored in the repository — publishing uses npm's OIDC Trusted Publisher mechanism.
One-time setup (maintainer)
- On npmjs.com, open the
n8n-nodes-creatiopackage → Settings → Trusted Publishers. - Add a GitHub Actions publisher pointing at this repository and the workflow file
.github/workflows/publish.yml(branch/environment left blank). - Ensure GitHub Actions is enabled for the repository.
Cutting a release
npm version patch # or: minor / major — bumps package.json, commits, creates a vX.Y.Z tag
git push --follow-tags # pushes the commit and the tagPushing the vX.Y.Z tag triggers .github/workflows/publish.yml, which builds and runs npm publish --provenance --access public. The published package includes a signed provenance statement.
Note: the publish workflow triggers on tags matching
v*.*.*, which is the tag formatnpm versioncreates by default. If you changenpm version's tag prefix, update the trigger inpublish.ymlto match.
License
This project is licensed under the Business Source License 1.1.
- ✅ Free for personal, educational, and non-commercial use.
- 💼 Commercial use (including providing services, SaaS, or selling products that substantially derive value from this software) requires a separate license agreement with Architechts NV.
For questions or licensing inquiries, please contact: [email protected]
