Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,12 @@
"troubleshooting-guides/salesforce"
]
},
{
"group": "Security",
"pages": [
"security/outgoing-ip-addresses"
]
},
"dev-and-prod-environments",
"terminology",
"unified-api"
Expand Down
6 changes: 6 additions & 0 deletions src/generate-docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,12 @@ const baseConfig = {
"troubleshooting-guides/salesforce"
]
},
{
group: "Security",
pages: [
"security/outgoing-ip-addresses"
]
},
"dev-and-prod-environments",
"terminology",
"unified-api",
Expand Down
20 changes: 20 additions & 0 deletions src/security/outgoing-ip-addresses.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
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.
Loading