Skip to contentSkip to navigationSkip to topbar
On this page

Remove an IP address from a pool



API Overview

api-overview page anchor

IP pools allow you to group your dedicated SendGrid IP addresses. For example, you could create separate one pool for your transactional email and another for your marketing email. When sending marketing emails, specify that you want to use the marketing IP pool. This allows you to maintain separate reputations for your different email traffic.

A single IP address or a range of IP addresses may be dedicated to an account in order to send email for multiple domains. The reputation of this IP is determined by the aggregate performance of all email traffic sent from it.

IP pools can only be used with IP addresses for which you've set up a reverse DNS record.

If an IP pool is not specified for an email, it will use any IP available, including pooled addresses.

Each user can create up to 100 different IP pools.


DELETE/v3/ips/pools/{pool_name}/ips/{ip}

Base url: https://api.sendgrid.com (for global users and subusers)

Base url: https://api.eu.sendgrid.com (for EU regional subusers)

This endpoint allows you to remove an IP address from an IP pool.


Authentication

authentication page anchor
Property nameTypeRequiredDescription
Authorizationstringrequired
Default: Bearer <<YOUR_API_KEY_HERE>>
Property nameTypeRequiredDescription
pool_namestringrequired

The name of the IP pool that you are removing the IP address from.


ipstringrequired

The IP address that you wish to remove.

204404
Schema
Property nameTypeRequiredDescriptionChild properties

No properties defined

Remove an IP address from a poolLink to code sample: Remove an IP address from a pool
1
const client = require('@sendgrid/client');
2
client.setApiKey(process.env.SENDGRID_API_KEY);
3
4
const pool_name = "per";
5
const ip = "ZGkrHSypTsudrGkmdpJJ";
6
7
const request = {
8
url: `/v3/ips/pools/${pool_name}/ips/${ip}`,
9
method: 'DELETE',
10
11
}
12
13
client.request(request)
14
.then(([response, body]) => {
15
console.log(response.statusCode);
16
console.log(response.body);
17
})
18
.catch(error => {
19
console.error(error);
20
});