From d3333fc666632a86b63af7d8c56b7ae6fd15a201 Mon Sep 17 00:00:00 2001 From: Rachel Davey <84862906+Rachel-Codat@users.noreply.github.com> Date: Thu, 13 Aug 2026 10:47:31 +0100 Subject: [PATCH 1/3] Remove obsolete Hosted Link prerequisite from secure linking The legacy Hosted Link UI was deprecated on 10 April 2025, so the new Hosted Link interface is the only interface available and is no longer a prerequisite worth calling out. The "If using Hosted or build-your-own Link" section below already covers the Hosted Link flow. Co-Authored-By: Claude Opus 5 (1M context) --- blog/250110-secure-linking.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/blog/250110-secure-linking.md b/blog/250110-secure-linking.md index 84daaae6a..0d97cd4c9 100644 --- a/blog/250110-secure-linking.md +++ b/blog/250110-secure-linking.md @@ -35,10 +35,6 @@ To set up one-time Link URLs: 1. **Enable the One-time Link URLs setting** in the [Codat Portal](https://app.codat.io) under **[Settings > Auth flow > Link > Onboarding](https://app.codat.io/settings/link-settings/onboarding)**. 2. **Complete the additional steps for your Link flow**, as described below. -#### If using Hosted Link - -As a prerequisite to enabling one-time Link URLs, you also need to enable the [new Hosted Link interface](/updates/250110-new-hosted-link-ui). - #### If using Hosted or build-your-own Link If you are currently adding query parameters to Link URLs (for example, by appending `?link.showSandboxIntegrations=false`), confirm that your code can handle URLs that already contain query strings. From 992f7e56499cc28b87e874a8474b676a608fba67 Mon Sep 17 00:00:00 2001 From: Rachel Davey <84862906+Rachel-Codat@users.noreply.github.com> Date: Thu, 13 Aug 2026 11:45:00 +0100 Subject: [PATCH 2/3] Reword build-your-own Link heading Co-Authored-By: Claude Opus 5 (1M context) --- blog/250110-secure-linking.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/250110-secure-linking.md b/blog/250110-secure-linking.md index 0d97cd4c9..00c7d6077 100644 --- a/blog/250110-secure-linking.md +++ b/blog/250110-secure-linking.md @@ -35,7 +35,7 @@ To set up one-time Link URLs: 1. **Enable the One-time Link URLs setting** in the [Codat Portal](https://app.codat.io) under **[Settings > Auth flow > Link > Onboarding](https://app.codat.io/settings/link-settings/onboarding)**. 2. **Complete the additional steps for your Link flow**, as described below. -#### If using Hosted or build-your-own Link +#### If using Hosted Link or your own custom-built Link UI If you are currently adding query parameters to Link URLs (for example, by appending `?link.showSandboxIntegrations=false`), confirm that your code can handle URLs that already contain query strings. From 3bf1760492ccf8acdfe80bc3acbab5c3a8fe7b5c Mon Sep 17 00:00:00 2001 From: Rachel Davey <84862906+Rachel-Codat@users.noreply.github.com> Date: Thu, 13 Aug 2026 14:51:48 +0100 Subject: [PATCH 3/3] Fix Prettier formatting on the manage connections update blog/260812-link-manage-connections-reconnect.md landed on main via #1879 without a blank line after the image inside the numbered list, which fails the markdown-format check and turns main red. Formatting only, no content change. Co-Authored-By: Claude Opus 5 (1M context) --- blog/260812-link-manage-connections-reconnect.md | 1 + 1 file changed, 1 insertion(+) diff --git a/blog/260812-link-manage-connections-reconnect.md b/blog/260812-link-manage-connections-reconnect.md index 7bd0bcf41..eeb79ab39 100644 --- a/blog/260812-link-manage-connections-reconnect.md +++ b/blog/260812-link-manage-connections-reconnect.md @@ -123,6 +123,7 @@ The manage connections experience is available in the Link SDK. To set it up: 1. **Enable the Manage connections setting** in the [Codat Portal](https://app.codat.io) under [Settings > Auth flow > Link](https://app.codat.io/settings/link-settings/onboarding) to let authenticated users view and manage their existing connections. You can also customize the title and subtitle shown on the manage connections screen. ![The Manage connections setting in the Codat Portal's Link settings, with a toggle and customizable title and subtitle](/img/updates/manageconnection.png "Manage connections setting in the Codat Portal") + 2. **Register your domain** using the [Set CORS settings](/platform-api#/operations/set-cors-settings) endpoint so the component can make authenticated requests from your site. 3. **Get a company access token.** Authenticated features require an access token, retrieved server-side from the [Get company access token](/platform-api#/operations/get-company-access-token) endpoint (`GET /companies/{companyId}/accessToken`). Tokens are valid for 24 hours and scoped to a single company. 4. **Pass the token to the Link SDK** via the `accessToken` prop when initializing the component.