Package Information
Available Nodes
Documentation
n8n-nodes-ms-dataverse
This is an n8n community node that lets you interact with Microsoft Dataverse (Power Platform) in your n8n workflows.
Microsoft Dataverse is a cloud-based data storage service that provides a secure and scalable way to store and manage business data. It's the underlying data platform for Power Apps, Power Automate, and Dynamics 365.
n8n is a fair-code licensed workflow automation platform.
Installation
Operations
Credentials
Compatibility
Usage
Resources
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Node Installation
- Go to Settings > Community Nodes in your n8n instance
- Select Install
- Enter
n8n-nodes-ms-dataversein the Enter npm package name field - Agree to the risks and select Install
Operations
This node supports the following operations on Dataverse records:
Record Operations
- Assign: Assign a record to a user or team (change ownership)
- Create: Create a new record in a table
- Delete: Delete a record by ID or alternate key
- Get: Retrieve a single record by ID or alternate key
- Get Many: Retrieve multiple records using OData queries or FetchXML
- Update: Update an existing record by ID or alternate key
- Upsert: Create a new record or update if it exists (based on alternate key)
- Share Access Add: Grant access to a record for a user or team
- Share Access List: List all users and teams who have access to a record
- Share Access Revoke: Revoke access to a record from a user or team
Choice Field Helper
When working with choice (picklist) fields in Create, Update, or Upsert operations:
- View Choice Field: Select a field name to view its available options
- Choice Options Viewer: Displays options in "Label (Value)" format
- Supports both Local Choice (OptionSet) and Global Choice (GlobalOptionSet)
- Copy the numeric value to use in your field values
Global Choice Operations
Manage global choice option sets (reusable picklists across multiple tables):
- List: List all global choices with their options
- Get: Retrieve a specific global choice with all its options
- Create: Create a new global choice with initial options
- Add Option: Add a new option to an existing global choice
- Update Option: Update the label of an existing option
- Delete Option: Remove an option from a global choice
- Delete: Delete an entire global choice
Relationship Operations
Manage many-to-many relationships between records:
- Associate: Create a many-to-many relationship between two records
- Disassociate: Remove a many-to-many relationship between two records
Required Parameters:
- Primary Table: The source table containing the first record
- Primary Record ID: The GUID of the first record
- Relationship Name: The schema name of the many-to-many relationship (e.g.,
contact_account_customers) - Related Table: The target table containing the second record
- Related Record ID: The GUID of the second record
Example Use Cases:
- Associate a contact with an account
- Link a user to a team
- Connect products to categories
- Relate any two entities with a many-to-many relationship
Table Operations
Create custom tables with field definitions:
- Create: Create a new custom table with fields
Parameters:
- Solution Name or ID: (Optional) The solution to create the table in. Select from available solutions or leave empty for default solution.
- Schema Name: The schema name for the table (e.g.,
new_customtable) - Display Name: The display name for the table
- Plural Display Name: The plural display name
- Primary Name Field: Schema name for the primary name field (e.g.,
new_name) - Primary Name Display Name: Display name for the primary name field
Best Practice: Always specify a solution for production environments to enable proper Application Lifecycle Management (ALM).
Additional Fields:
Define custom fields with the following types:
- String: Text field with configurable max length
- Memo: Multi-line text field
- Integer: Whole number with min/max values
- Decimal: Decimal number with precision
- Money: Currency field with precision
- Boolean: Yes/No field
- DateTime: Date and time field
- Picklist: Choice field (options can be added later)
Each field supports:
- Display name and description
- Required level (None, Recommended, Required)
- Type-specific settings (max length, precision, min/max values)
SQL Query via TDS (Read-Only)
- Execute Query: Run SQL queries directly against Dataverse using the Tabular Data Stream (TDS) endpoint
- Supports standard SQL SELECT statements
- Read-only access (no INSERT, UPDATE, DELETE)
- Requires TDS endpoint to be enabled in your Dataverse environment
Webhook Operations
Manage webhook endpoints and steps for real-time event notifications from Dataverse.
- Register Endpoint: Create a reusable webhook URL (ServiceEndpoint)
- Register Step: Link an endpoint to a specific table and operation (SDK Message Processing Step)
- List Endpoints: List all registered webhook endpoints
- List Endpoint Steps: List steps associated with an endpoint
- Delete Endpoint: Delete a webhook endpoint and all its associated steps
- Delete Step: Delete a specific SDK message processing step
- List SDK Message Filters: List available message filters for a table
Two-stage registration:
- First, register a reusable endpoint (webhook URL)
- Then, register one or more steps to link that endpoint to table events (Create, Update, Delete, Assign, SetState)
For Update operations, you can specify Filtering Attributes — a comma-separated list of field names that trigger the webhook (e.g., name,emailaddress1).
Plugin Operations
Manage DLL plugin assemblies and their registration steps.
- Upload Assembly: Upload a DLL plugin assembly to Dataverse
- Register Step: Register a plugin step for a table/operation
- List Assemblies: List all plugin assemblies
- Delete Assembly: Delete a plugin assembly
Plugin steps support:
- Event Operations: Create, Update, Delete
- Execution Stages: Pre-Validation, Pre-Operation, Post-Operation
- Filtering Attributes: Specify which fields trigger the plugin (Update only)
Web Resource Operations
Upload and manage web resources (JavaScript, CSS, HTML, images, etc.).
- Upload: Create a new web resource
- Update: Update content of an existing web resource
- List: List web resources with optional type filter
- Delete: Delete a web resource
Supported web resource types: HTML, CSS, JavaScript, XML, PNG, JPG, GIF, XAP (Silverlight), XSL, ICO, SVG, RESX.
For text-based types (JS, CSS, HTML, XML), provide raw code — it will be base64-encoded automatically. For binary types (images), provide pre-encoded base64 content.
Features
- Dynamic Table Discovery: Automatically loads available tables from your Dataverse environment using the OData metadata endpoint
- Dynamic Field Selection: Field names load from table metadata with dropdowns showing display name, logical name, and type
- Alternate Key Support: All record operations (Get, Update, Delete, Share) support alternate keys with dynamic field selection
- Image & File Downloads: Automatically detect and download image and file fields as binary data
- OData Support: Use OData query syntax for filtering, sorting, and selecting fields
- FetchXML Support: Execute complex queries using FetchXML
- TDS/SQL Support: Execute SQL queries for complex data retrieval and analysis
- JSON Input Mode: Create, Update, and Upsert operations support both field collection and JSON input modes
- Access Control: Share records with users/teams, list access, and revoke access with UPN/team name lookup
- Custom Authentication: Use custom environment URL and access token for environments without OAuth2 setup
- Enhanced Error Messages: Detailed error messages with HTTP status codes and Dataverse error codes
Credentials
This node uses Microsoft OAuth2 authentication to connect to Dataverse.
Prerequisites
- A Microsoft Dataverse environment (part of Power Platform or Dynamics 365)
- An Azure AD app registration with appropriate permissions
Setting up Azure AD App Registration
- Go to the Azure Portal
- Navigate to Azure Active Directory > App registrations
- Click New registration
- Enter a name (e.g., "n8n Dataverse Integration")
- Set Redirect URI to:
https://your-n8n-instance.com/rest/oauth2-credential/callback - Click Register
- Note the Application (client) ID
- Go to Certificates & secrets and create a new client secret
- Note the secret value (you won't be able to see it again)
- Go to API permissions and add:
- Dynamics CRM > user_impersonation (Delegated)
- Grant admin consent if required
Configuring Authentication in n8n
Option 1: OAuth2 (Default - Recommended)
- In n8n, create new credentials of type Microsoft Dataverse OAuth2 API
- Enter your Environment URL (e.g.,
https://yourorg.crm.dynamics.com) - Enter the Client ID from your Azure app registration
- Enter the Client Secret from your Azure app registration
- Click Connect my account and authorize the application
- Test the connection
Option 2: Custom Authentication (For test/sandbox environments)
Use this option when you have an access token but don't have OAuth2 configured in the target environment (e.g., test/sandbox environments).
- In the node, scroll to Options section at the bottom
- Click Add Option and enable Use Custom Authentication
- Enter your Environment URL (e.g.,
https://yourorg.crm.dynamics.com) - In the Access Token field, provide the token:
- From webhook header:
={{$json.headers.authorization.replace("Bearer ", "")}} - From previous node:
={{$node["PreviousNode"].json["access_token"]}} - Or paste a token directly (for testing)
- From webhook header:
Note:
- Access tokens typically expire after 1 hour. For production use with automatic token refresh, use OAuth2 method instead.
- No OAuth2 credentials are required when using custom authentication.
Example Use Case:
- Copy an access token from a production environment (with OAuth2 configured)
- Use it to test against a sandbox environment (without OAuth2 setup)
- Receive a webhook from Power Automate with an Authorization header and use that token
Compatibility
- Minimum n8n version: 1.0.0
- Tested with n8n version: 1.0.0+
- Dataverse API version: 9.2
Usage
Creating a Record
- Select Create operation
- Choose your table from the dropdown (or enter manually)
- Add fields and their values
- Execute the workflow
Retrieving Records with OData
- Select Get Many operation
- Choose OData as query type
- Use the filter field to add OData filters (e.g.,
name eq 'Contoso') - Optionally add ordering and field selection
- Set the limit for maximum records to return
Retrieving Records with FetchXML
- Select Get Many operation
- Choose FetchXML as query type
- Enter your complete FetchXML query
- Execute the workflow
Using Alternate Keys
Alternate keys allow you to identify records using business keys instead of GUIDs. Supported operations: Get, Update, Delete, Upsert, Share Access Add, Share Access List, Share Access Revoke.
- Select any supported operation
- Choose Alternate Key as Record ID Type
- Select key name from dropdown (loads from table's defined alternate keys)
- Enter the key value
- Execute the workflow
Example: Get Account by Email
Operation: Get
Table: accounts
Record ID Type: Alternate Key
Alternate Keys:
- Key Name: emailaddress1 (selected from dropdown)
- Key Value: contact@example.com
Using Upsert Operation
Upsert creates a new record if it doesn't exist, or updates it if it does (based on alternate keys).
With Alternate Keys (Update or Create):
Operation: Upsert
Table: ssl_certs
Alternate Keys:
- Key Name: domain
- Key Value: example.com
Fields:
- Field Name: status
- Field Value: active
Without Alternate Keys (Always Create):
Operation: Upsert
Table: contacts
Fields:
- Field Name: firstname
- Field Value: John
Managing Record Access
Share Access with User (by Email/UPN)
Operation: Share Access Add
Table: accounts
Record ID Type: Primary Key (ID)
Record ID: abc-123-def-456
Principal Type: User
Principal ID Type: UPN (User Principal Name)
User Principal Name: user@example.com
Access Rights: Read, Write
Share Access with Team (by Name)
Operation: Share Access Add
Table: accounts
Record ID Type: Alternate Key
Alternate Keys:
- Key Name: accountnumber
- Key Value: ACC-001
Principal Type: Team
Team Name: Sales Team
Access Rights: Read, Write, Delete
List Who Has Access
Operation: Share Access List
Table: accounts
Record ID: abc-123-def-456
Returns all users and teams with access and their permission levels.
Revoke Access
Operation: Share Access Revoke
Table: accounts
Record ID: abc-123-def-456
Principal Type: User
Principal ID Type: UPN
User Principal Name: user@example.com
Executing SQL Queries via TDS
Prerequisites
Enable TDS Endpoint in your Dataverse environment:
- Go to Power Platform Admin Center
- Select your environment
- Go to Settings → Product → Features
- Enable "Tabular Data Stream (TDS) endpoint"
- Save changes
Configure IP Firewall (if applicable):
- Ensure your n8n instance IP is allowed in Dataverse firewall rules
OAuth2 Scope: Ensure your OAuth2 token includes the scope:
https://yourorg.crm.dynamics.com/.default
Using SQL Queries
- Select SQL Query via TDS (Read-Only) as the resource
- Select Execute Query operation
- Enter your SQL query (e.g.,
SELECT TOP 10 name, emailaddress1 FROM account) - Execute the workflow
Example SQL Queries
Get top 10 accounts:
SELECT TOP 10 accountid, name, emailaddress1, createdon
FROM account
ORDER BY createdon DESC
Filter with WHERE clause:
SELECT name, revenue, industrycode
FROM account
WHERE revenue > 1000000
AND statecode = 0
Join tables:
SELECT a.name, c.fullname, c.emailaddress1
FROM account a
INNER JOIN contact c ON a.accountid = c.parentcustomerid
WHERE a.statecode = 0
Note: TDS endpoint is read-only. INSERT, UPDATE, and DELETE operations are not supported.
Viewing Table Field Schemas
To discover available fields and their logical names for a table:
- Select any operation (Create, Get, Update, Get Many, or SQL Query)
- Choose a table from the dropdown
- Look for the View Table Fields (Reference Only) dropdown
- Click to load and browse all available fields
- Each field shows:
- Display Name (e.g., "Account Name")
- Logical Name (e.g., "name") - use this in your queries
- Field Type (e.g., "String", "Lookup", "DateTime")
- Permissions: [C] = Create, [U] = Update, [R] = Read
Note: This field is for reference only and doesn't affect the operation. Use the logical names you discover here in your field mappings and queries.
Downloading Images and Files
The Get operation can automatically download image and file fields as binary data, making them available for further processing in your workflow.
Downloading Images
Select Get operation
In Options, find Download Images and choose:
- None: Don't download images (default)
- Thumbnails Only: Download base64-encoded thumbnails from the response
- Full Images (Download via API): Download full-resolution images via separate API calls
Auto-detect (recommended): Leave Image Field Names empty to automatically detect all image fields using metadata
Manual specification: Enter comma-separated field names (e.g.,
crb1b_img,entityimage)
Example:
Operation: Get
Table: contacts
Record ID: abc123...
Options:
- Download Images: Full Images (Download via API)
- Image Field Names: (leave empty for auto-detect)
Binary data will be available as $binary.entityimage, $binary.crb1b_img, etc.
Downloading Files
- Select Get operation
- In Options, enable Download Files
- Auto-detect (recommended): Leave File Field Names empty to automatically detect all file fields using metadata
- Manual specification: Enter comma-separated field names (e.g.,
crb1b_document,attachment)
Example:
Operation: Get
Table: crb1b_academicprograms
Record ID: def456...
Options:
- Download Files: true
- File Field Names: (leave empty for auto-detect)
Binary data will be available as $binary.document, $binary.attachment, etc.
How It Works
- Metadata-based detection: The node queries the EntityDefinitions API to identify Virtual attributes that are images (have
_urland_timestampfields) or files (have_namefield) - Empty field handling: Null or empty fields are automatically skipped
- Filename preservation: Original filenames are preserved when available (e.g., from
fieldname_name) - Binary property naming: Clean property names are generated (e.g.,
crb1b_documentbecomesdocument) - Multiple fields: Download multiple image and file fields from a single record
Technical Details
- Images: Downloaded via PowerApps Image endpoint (
/Image/download.aspx?Full=true) - Files: Downloaded via Web API endpoint (
/[entity]([id])/[field]/$value) - Format: Binary data is properly formatted for n8n's binary data system
- Error handling: Download failures are logged but don't stop the workflow
Using Custom Authentication
See the Custom Authentication section under Credentials for detailed instructions on using custom environment URLs and access tokens.