One node reaches every Priority surface — forms, procedures, reports, form actions, and read-only SQL with joins. Every form, field, subform, and dropdown value is discovered live from your own Priority server. Nothing is hardcoded, so nothing goes out of sync.
n8n-nodes-priority-gateway v3.17.1
7,657 downloads in 12 months · 1,715 in the last 30 days
61 published versions
Level 3 became selectable the moment level 2 was picked.
Nothing above was typed by hand. The node reads it from your Priority while you build the flow.
Priority answers on WebSDK, OData, and SQLI. WebSDK runs procedures, reports, and form actions — from JavaScript only. OData handles bulk records, but only for forms on the approved list, and it cannot join. SQLI joins across tables, and it lives in the developer console. Wiring all three by hand means three request patterns to build and then own.
A field name pasted into an HTTP Request node is a copy of the schema, and copies drift. Every column the customer adds, every form they customize, every subform they introduce is a flow that breaks in production rather than at design time.
One node, one credential, and a field list that cannot go stale.
Pick the operation you want. The node picks the protocol underneath, and the gateway speaks it.
Filtered reads with subforms three levels deep, row writes, and file attachments taken from binary data or a URL. Smart filters and wildcard searches live here.
Bulk reads that expand parent and children in one call, deep-insert writes that create an order and its lines together, and paging handled for you.
Run a procedure or generate a report with auto-discovered fields. Output as HTML, Excel, or PDF, with the format-template list loaded from Priority.
Fire an activation against a specific row — the same button a user would press inside Priority. Its fields are discovered against the row you actually selected.
Joins, GROUP BY, and aggregates against Priority's database layer. The builder resolves the joins for you; raw mode is there when you would rather write the query yourself.
Pull attachment columns in the same round-trip. Base64 data URIs suit one-shot consumers such as LLMs and batch jobs; gateway-proxied URLs suit UIs and large result sets.
Six mode toggles keep the panel small. Filter Mode, Query Mode, Lookup Mode, Input Mode, Parameter Input Mode, and File Source each switch between a guided form and raw input — visual when you are exploring, raw when you know exactly what you want.
29 loadOptions methods and 26 listSearch methods fetch forms, fields, subforms, activations, columns, and dropdown values at design time — from the server your credential points at.
Sub-subform options appear once the parent is chosen. Form-action fields are discovered against the row you selected. Report format templates surface once a valid key is supplied. Each choice narrows the next one.
A dropdown carries the values Priority itself would offer, each marked with what it is: the default, a fixed Choose list, a searchable lookup, or a yes/no flag. You pick from the real set instead of guessing a code.
The entity-name gate answers half-typed prefixes from a cached index. That matters because n8n discards option requests that are still in flight: without the cache, a dependent dropdown goes blank while you type.
Type the comparison into the value itself. The node translates it for whichever backend the operation uses.
| You type | It means |
|---|---|
>=100 | at least 100 |
<>ABC | anything except ABC |
SO* | starts with SO |
1..100 | between 1 and 100 |
WebSDK receives a LIKE, OData receives contains() or startswith(), and a range becomes a from-value and to-value pair. One syntax, three translations.
Priority's OData and WebSDK cannot join. The SQLI builder walks the form cursor's join graph, takes the shortest path between the tables your chosen columns live on, and writes the join itself.
Columns from joined tables appear in the same dropdown, grouped under the table they belong to. Picking one adds the join.
SELECT CUSTOMERS.CUSTDES, COUNT(*), SUM(ORDERS.TOTPRICE) FROM ORDERS, CUSTOMERS WHERE ORDERS.CUST = CUSTOMERS.CUST GROUP BY 1 FORMAT;
Read-only by construction. The gateway rejects every mutating verb before a query leaves the building, so a SQLI step cannot write to the ERP even if someone asks it to. Raw SQLI mode is the escape hatch when you would rather compose the query yourself, and it is read-only too.
Priority procedures stop on confirmation dialogs. A scheduled flow has nobody to press Continue, so you decide the answers while you build it.
Dialog Policy sets the default for the whole run: auto-confirm, auto-cancel, or fail. Dialog Responses override it in order — entry number three answers the third dialog.
Choose HTML, Excel, or PDF, and pick from the format templates Priority actually offers for that report. A Word template selects Word PDF on its own. Reports with a second parameter page are handled as a normal step, not a workaround.
Parent, subform, and sub-subform on a WebSDK read, an OData expand, or a deep-insert write. Each level takes its own columns, its own filter, and its own AND/OR logic.
A connector token carries the whole Priority identity, so the credential form asks for three things and hides the rest.
Also fills the Company dropdown.
Everything else sits behind the Advanced toggle.
Server, tabulaini, user, language, and any App or Cloudflare Access keys it was minted with. No other Priority field is needed, and no Priority password is stored in n8n.
Mint one yourself at <gatewayUrl>/connector. It lasts 365 days, and revoking it takes seconds.
Per-node Connection Overrides — 14 of them — let one flow reach a second company or a test environment without a second credential.
The node generates its own authoring spec — 26 sections, emitted from the node's own parameter definitions, so it cannot drift from what the panel accepts. The gateway serves that spec to any LLM.
Point an agent at GET /api/v1/n8n-guide, or let an MCP client call priority_discover({action:"n8n_node"}). It writes a working workflow JSON without opening the editor.
Install it the way your n8n runs, paste three fields, and import the example.
Settings → Community Nodes → Install, then search for n8n-nodes-priority-gateway. The node appears on the canvas straight away.
Run npm install n8n-nodes-priority-gateway inside ~/.n8n/nodes, then restart n8n.
One prerequisite: a running Priority Gateway. One gateway serves every n8n instance you have, and it is what puts WebSDK, OData, and SQLI behind a single credential. The node never talks to Priority directly, so no Priority SDK is installed on the n8n host.
One Priority behavior worth knowing up front: a WebSDK read with no filter returns zero rows. That is Priority, not the node — the SDK fetches rows only once a filter has been applied. The shipped example starts with a filter for exactly this reason. OData Query has no such requirement.
The package ships a workflow you can import as-is.
| File | examples/workflows/websdk-read-filtered.json |
|---|---|
| What it does | Reads CUSTOMERS, filtered on CUSTNAME with SO* |
| To run it | Import, select your credential, press Execute |
Downloads are the only third-party number we have, so they are the only one we quote.
npm figures fetched 8 August 2026. Roughly a fifth of the year's downloads landed in the last month. MIT licensed, published as n8n-nodes-priority-gateway.
The node runs in your own n8n. What it calls is the Priority Gateway — hosted for you on Amazon Web Services, or installed on your own network as a single Windows service.
The hosted gateway runs in Amazon's Tel Aviv region, deployed from a versioned pipeline. Secrets live in AWS Parameter Store, encrypted, never in a database or a config file.
Every call your workflow makes arrives through Cloudflare: TLS, DDoS protection, a web application firewall, rate limiting and bot filtering, plus caching and routing that shorten the trip.
The servers accept no inbound connections. They dial out to Cloudflare and traffic comes back down that tunnel, so there is no public port to find and nothing to scan. Admin surfaces sit behind a second gate.
Running the gateway on your own premises? It ships as a single Windows service, and the same Cloudflare model is how a cloud-hosted n8n reaches it — without opening a port on your network.
The node is one caller of the Priority Gateway. The same gateway and the same revocable token serve the rest of the family, and one registration provisions all of it.