From 9f76ad17036d24f8ebcaa6fc805c95d91db9623e Mon Sep 17 00:00:00 2001 From: Jaehyun Lim Date: Tue, 15 Sep 2026 17:43:01 -0700 Subject: [PATCH 1/3] docs: add Security section with outgoing IP addresses to allowlist Adds a new Security group to the left navigation with a page listing the IP addresses that Ampersand's outgoing API traffic originates from, so customers and builders can allowlist them in provider apps that support IP restrictions. Co-Authored-By: Claude Fable 5 --- src/docs.json | 6 ++++++ src/security/outgoing-ip-addresses.mdx | 24 ++++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 src/security/outgoing-ip-addresses.mdx diff --git a/src/docs.json b/src/docs.json index 1fb179bc..cfda2da1 100644 --- a/src/docs.json +++ b/src/docs.json @@ -321,6 +321,12 @@ "troubleshooting-guides/salesforce" ] }, + { + "group": "Security", + "pages": [ + "security/outgoing-ip-addresses" + ] + }, "dev-and-prod-environments", "terminology", "unified-api" diff --git a/src/security/outgoing-ip-addresses.mdx b/src/security/outgoing-ip-addresses.mdx new file mode 100644 index 00000000..df59acd5 --- /dev/null +++ b/src/security/outgoing-ip-addresses.mdx @@ -0,0 +1,24 @@ +--- +title: "Outgoing IP addresses" +--- + +All outgoing API requests from Ampersand to SaaS providers originate from a fixed set of IP addresses. If a provider app or API you are integrating with supports IP allowlisting (sometimes called whitelisting), add the following IP addresses to its allowlist so that requests from Ampersand are not blocked. + +## IP addresses to allowlist + +``` +34.53.82.136 +34.53.32.186 +34.182.109.175 +``` + +These IP addresses apply to all outgoing traffic from Ampersand, including: + +- [Read actions](/read-actions): API calls to read data from providers. +- [Write actions](/write-actions): API calls to write data to providers. +- [Proxy actions](/proxy-actions): API calls proxied through Ampersand. +- [Subscribe actions](/subscribe-actions): API calls to create and manage webhook subscriptions. + + +If this list changes, we will update this page and notify you in advance so that you can update your allowlist. + From e439e244d08ff4a4b28a4227ec5ce2cfc28aa4bf Mon Sep 17 00:00:00 2001 From: Jaehyun Lim Date: Tue, 15 Sep 2026 18:07:11 -0700 Subject: [PATCH 2/3] docs: register Security nav group in generate-docs.ts docs.json is auto-generated from generate-docs.ts; add the Security group to the source so regeneration preserves it. Co-Authored-By: Claude Fable 5 --- src/generate-docs.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/generate-docs.ts b/src/generate-docs.ts index c93b2f43..28801093 100644 --- a/src/generate-docs.ts +++ b/src/generate-docs.ts @@ -553,6 +553,12 @@ const baseConfig = { "troubleshooting-guides/salesforce" ] }, + { + group: "Security", + pages: [ + "security/outgoing-ip-addresses" + ] + }, "dev-and-prod-environments", "terminology", "unified-api", From 24131983f330f84ef571e8e77521d8c53ffe902d Mon Sep 17 00:00:00 2001 From: Lauren Long Date: Fri, 18 Sep 2026 14:33:50 -0700 Subject: [PATCH 3/3] Update outgoing-ip-addresses.mdx --- src/security/outgoing-ip-addresses.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/security/outgoing-ip-addresses.mdx b/src/security/outgoing-ip-addresses.mdx index df59acd5..69823f13 100644 --- a/src/security/outgoing-ip-addresses.mdx +++ b/src/security/outgoing-ip-addresses.mdx @@ -18,7 +18,3 @@ These IP addresses apply to all outgoing traffic from Ampersand, including: - [Write actions](/write-actions): API calls to write data to providers. - [Proxy actions](/proxy-actions): API calls proxied through Ampersand. - [Subscribe actions](/subscribe-actions): API calls to create and manage webhook subscriptions. - - -If this list changes, we will update this page and notify you in advance so that you can update your allowlist. -