SnapLogic August 2026 Release is Live in Production! The August 2026 GA Release has officially rolled out across all regions. Key Highlights at a Glance:
UI & Designer Updates: Redesigned left navigation, updated toolbar validation controls, and the official retirement of Classic Manager (now fully transitioned to Project & Admin Manager).
SnapGPT Operations & AI Monitoring: AI-driven Snaplex health checks, pipeline root-cause analysis, and capacity planning in Monitor, along with new SnapGPT developer usage metrics.
MCP Server & Agent Tools: MCP server fleet observability, direct pipeline-to-tool exposure, 8 new native discovery/export tools, and a dynamic Token Exchange rule (RFC 8693).
SnapCode Marketplace Integration: Simple, single-command installation via Claude Code Marketplace using HTTP transport.
Snaps & Platform Infrastructure: New Snap Packs (Zendesk, Dropbox, IBM MQ), ServiceNow Statistics Snap, JRE 21 support, and admin visibility into Node Usage vs. entitlements.Important Admin & Upgrade Notes:
Recommended Snaplex Version: Upgrading to main-45084-4.45 GA is recommended to take advantage of these updates.
Automated Upgrade Schedule: Automatic Snaplex updates will occur on September 12, 2026.
Check out the Release Notes for the full announcement and details!
Get a quick tour of SnapLogic Monitor's Analyze pages. These tools give you visibility into your SnapLogic environment's assets, activities, and health. In this video clip, we cover: β’ Asset Catalog β View metadata for tasks, pipelines, and accounts, explore relationships between assets, and add custom metadata. β’ Insights β Get a daily at-a-glance summary of environment activity, including pipeline and Snap execution charts. β’ Pipeline Executions β Monitor running pipelines, drill into execution hierarchies, and filter execution history by status to troubleshoot errors. β’ Infrastructure β Analyze the health of your Snaplexes and nodes with color-coded resource usage indicators and detailed metrics. β’ Metrics β Plot node resource usage over time, zoom into spikes, and jump directly to related pipeline executions or Designer.
Hi Satish - There are several ways to control which node or Snaplex a pipeline runs on: 1. Pipeline Configuration in Designer When you have a pipeline open in the Designer, you can select the target Snaplex directly from the Snaplex drop-down menu in the pipeline configuration. This determines where the pipeline will run. 2. Scheduled or Triggered Task Configuration When setting up a Scheduled or Triggered Task, you can specify the Snaplex on which the associated pipeline should run during task configuration. 3. Using the Pipeline Execute Snap (for Child Pipelines) When invoking a child pipeline via the Pipeline Execute Snap, you can control node execution using the "Execute On" field, which offers three options: LOCAL_NODE Runs the child pipeline on the same node as the parent pipeline. Best for performance β no network transfer. LOCAL_SNAPLEX Runs the child pipeline on any available node within the same Snaplex as the parent. SNAPLEX_WITH_PATH Runs the child pipeline on a user-specified Snaplex. A Snaplex Path field appears for you to enter the target Snaplex name. Tip: Using LOCAL_NODE is recommended for most child pipeline executions as it avoids network overhead and improves performance. 4. Using pipe.plexPath Expression You can use the pipe.plexPath expression in the Pipeline Execute Snap to dynamically ensure the child pipeline runs on the same node as the parent pipeline. Note: pipe.plexPath is not recommended for Ultra Pipelines, as sending execution to another node can be resource-intensive. 5. Dedicated Snaplex for a Project An Org/Environment admin can assign a dedicated Snaplex to a specific project by moving it from the Shared project to another project. Only pipelines within that project will have access to that Snaplex in Manager and Designer. Best Practices Summary
Use LOCAL_NODE when parent and child pipelines communicate frequently.
Use LOCAL_SNAPLEX when child pipelines handle intensive workloads.
Use SNAPLEX_WITH_PATH only when the child pipeline must run on a different Snaplex due to endpoint connectivity restrictions or workload distribution needs.
Trident Consulting is hiring for a SnapLogic Administrator for a client in Dallas, TX (Hybrid). A global leader in business and technology services.
SnapLogic IntegrateAI 2026 brings together IT leaders and business innovators to unlock the full potential of AI across the enterprise Weβre coming to Dallas, San Francisco, and London in October and November. More details and registration for these events here: snaplogic.com/integrate-ai IntegrateAI is SnapLogicβs global, in-person event series designed for enterprise teams leading transformation in the age of AI. Learn from real-world customer examples, proven frameworks, and expert guidance on getting your data AI-ready. Integrate sessions are designed to help you modernize systems, activate your data, and accelerate business outcomes with AI-powered integration.
Hi Manjula - I checked with SnapGPT desktop version and this was the response to your question: When you use the standard Salesforce Account (configured with Username, Password, Security Token, and Login URL), SnapLogic authenticates using the Salesforce SOAP API login endpoint β specifically via the login() call in the SOAP API. Here's the flow: SnapLogic β POST to login.salesforce.com/services/Soap/u<version> β SOAP login() call with Username + Password + Security Token β Salesforce returns a Session ID (token) + Instance URL β SnapLogic uses this Session ID for all subsequent REST/BULK API calls β οΈ Key Insight: Even if your Snaps are configured to use REST API or Bulk API for data operations, the initial authentication/session establishment is done via the SOAP API login endpoint. The Session ID obtained is then reused for REST and Bulk API calls. π Authentication Flow by API Type Snap Operation Auth Method Used Data Operation API Salesforce Read/Create/Update/Delete (REST mode) SOAP login() β Session ID REST API Salesforce Bulk Create/Update/Delete/Query SOAP login() β Session ID Bulk API 1.0 or 2.0 Salesforce SOQL SOAP login() β Session ID REST API Salesforce Bulk Update (new) SOAP login() β Session ID Bulk API 2.0 β οΈ Impact of "Salesforce SOAP API Versions 31.0β64.0 Retirement" This is critically important for your pipelines. Here's what it means: What's Being Retired? Salesforce is retiring SOAP API versions 31.0 through 64.0. The login() SOAP call used by SnapLogic's standard Salesforce Account relies on a specific SOAP API version endpoint. Direct Impact on Your Pipelines Scenario Impact Using Salesforce Account (username/password) with an older Service Version (e.g., 31.0β44.0) β Authentication will FAIL β the SOAP login endpoint for that version will be retired Using Salesforce Account with Service Version 65.0+ β Should continue to work Using Salesforce OAuth2 Account β Not impacted β uses OAuth2 token endpoint, not SOAP login Using Salesforce JWT OAuth2 Account β Not impacted β uses JWT bearer token flow Using Salesforce Mutual Authentication Account β οΈ Partially impacted β still uses username/password + certificate, check SOAP version used β Recommended Actions 1. Check Your Service Version in All Salesforce Snaps Navigate to each Salesforce Snap and verify the Service Version field. Ensure it is set to 65.0 or higher (post-retirement versions). The default Service Version was updated to 52.0 in the November 2021 release. If your pipelines are older, they may still be on versions 31.0β44.0. 2. Migrate to OAuth2-Based Authentication (Recommended) To completely eliminate dependency on SOAP login, migrate from the Salesforce Account to one of these:
Salesforce OAuth2 Account β Supports Authorization Code, Password Grant, and Client Credentials flows. No SOAP login dependency.
Salesforce JWT OAuth2 Account β Best for server-to-server integrations. Fully eliminates interactive login and SOAP dependency.
3. Update Login URL if Needed Ensure your Login URL in the Salesforce Account is using the current format:
Production: login.salesforce.com
Sandbox: test.salesforce.com
Enhanced Domain: MyDomainName.my.salesforce.com
π Summary Standard Salesforce Account (Username/Password) βββ Uses SOAP API login() to get Session ID βββ Session ID used for REST/Bulk API data operations βββ β οΈ SOAP API version retirement DIRECTLY impacts authentication βββ Fix: Upgrade Service Version to 65.0+ OR migrate to OAuth2 Bottom line: Even though your data operations use REST/Bulk API, the authentication layer still depends on SOAP API when using the standard Salesforce Account. Migrating to Salesforce OAuth2 or JWT OAuth2 accounts is the safest long-term approach to avoid any disruption from the SOAP API version retirement.
Turning Scattered Company Knowledge Into One Smart Search A global medical technology company had knowledge scattered across systems and teams, and buried in different file types. In this clip we cover how it was streamlined into one searchable knowledge base that reads and summarizes every file, then answers questions through a Teams chatbot, with a link back to the source every time.
AI in Production: Fixing Supply Chain Discrepancies With AI Start to Finish A consumer goods company was losing 3 to 4 hours per invoice tracking down mismatched purchase orders, shipment notices, and goods receipts. This clip walks through the full AI process built to solve their supply chain issues: agents that investigate breakdowns in the audit logs, suggest fixes, and answer plain language questions about any order, cutting hours of manual digging down to seconds. Also includes a look at the pipeline behind it.
This is an impactful innovation Konstantin!
AI in Production: How One Bank Rebuilt Its Lending Process With AI A banking lender was capped at 3 loan proposals per underwriter per day, with a 48-hour turnaround and data scattered across PDFs, spreadsheets, and emails. In this clip see how this AI in production use case includes an orchestration agent, supporting sub-agents, a Teams-based interface, and an Azure and OpenAI stack. The result is cutting a 48-hour turnaround down to 30 minutes.
