Home//IP Allowlist
IP Allowlist
Introduction
Changelog (2.16)
Intercom API
Admins
AI Content
Articles
Audiences
Away Status Reasons
Banners
Brands
Calls
Companies
Contacts
Content
Content Snippets
Conversations
Conversations Attributes
Custom Object Instances
Data Attributes
Data Connectors
Data Events
Data Export
Emails
Fin Agent
Help Center
Internal Articles
Jobs
Macros
Messages
News
Notes
Office Hours
Reporting Data Export
Segments
Subscription Types
Switch
Tags
Teams
Ticket States
Ticket Type Attributes
Ticket Types
Tickets
Visitors
WhatsApp
Workflows
Models
Manage IP allowlist settings for your workspace.
The IP Allowlist API allows you to configure which IP addresses are allowed to access the Intercom API and web application for your workspace. This is useful for restricting access to your Intercom workspace to specific corporate networks or VPNs.
Authentication
This endpoint requires the manage_ip_allowlist OAuth scope.
Retrieve the current IP allowlist configuration for the workspace.
Security
bearerAuth
Intercom-Versionstring(intercom_version)
Intercom API version.
By default, it's equal to the version set in the app package.
Default:"2.16"
Enum:"1.0""1.1""1.2""1.3""1.4""2.0""2.1""2.2""2.3""2.4"
Example:2.16
- The production API serverhttps://api.intercom.io/ip_allowlist
- The european API serverhttps://api.eu.intercom.io/ip_allowlist
- The australian API serverhttps://api.au.intercom.io/ip_allowlist
using System;
using System.Net.Http;
using System.Threading.Tasks;
public class Program
{
public static async Task Main()
{
System.Net.Http.HttpClient client = new()
{
DefaultRequestHeaders =
{
{"Intercom-Version", "2.16"},
{"Authorization", "Bearer <YOUR_TOKEN_HERE>"},
}
};
using HttpResponseMessage request = await client.GetAsync("https://api.intercom.io/ip_allowlist");
string response = await request.Content.ReadAsStringAsync();
Console.WriteLine(response);
}
}Successful response
String representing the object's type. Always has the value ip_allowlist.
Example:"ip_allowlist"
Response
{ "type": "ip_allowlist", "enabled": true, "ip_allowlist": [ "192.168.1.0/24", "10.0.0.1" ] }