Currently, the "Enter credentials" / "Update credentials" option in the accounting connection overflow menu is only shown when there's been a sync error due to incorrect credentials. This is controlled by the condition at PolicyAccountingPage.tsx:113:
const shouldShowEnterCredentials = connectedIntegration && !!synchronizationError && isAuthenticationError(policy, connectedIntegration);
This requires lastSync.isAuthenticationError === true (connections/index.ts:263), meaning users can only update credentials reactively after they break — not proactively.
While this makes sense for OAuth-based connections (e.g., QuickBooks, Xero) and NetSuite tokens, Sage Intacct uses a Web Services user with a company ID, user ID, and password. Users should be able to proactively update these credentials (e.g., during a planned password rotation) without waiting for a sync failure.
Proposed Change
For Sage Intacct connections, always show the "Update credentials" option in the overflow menu regardless of whether there's been an authentication error. The "Sync Now" option should still be available alongside it.
Slack thread: https://expensify.slack.com/archives/C03U7DCU4/p1778544534188309
Upwork Automation - Do Not Edit
- Upwork Job URL: https://www.upwork.com/jobs/~022054001089532006119
- Upwork Job ID: 2054001089532006119
- Last Price Increase: 2026-05-12
Currently, the "Enter credentials" / "Update credentials" option in the accounting connection overflow menu is only shown when there's been a sync error due to incorrect credentials. This is controlled by the condition at
PolicyAccountingPage.tsx:113:This requires
lastSync.isAuthenticationError === true(connections/index.ts:263), meaning users can only update credentials reactively after they break — not proactively.While this makes sense for OAuth-based connections (e.g., QuickBooks, Xero) and NetSuite tokens, Sage Intacct uses a Web Services user with a company ID, user ID, and password. Users should be able to proactively update these credentials (e.g., during a planned password rotation) without waiting for a sync failure.
Proposed Change
For Sage Intacct connections, always show the "Update credentials" option in the overflow menu regardless of whether there's been an authentication error. The "Sync Now" option should still be available alongside it.
Slack thread: https://expensify.slack.com/archives/C03U7DCU4/p1778544534188309
Upwork Automation - Do Not Edit