The IP Address Management API combines functionality that was previously split between the Twilio SendGrid IP Address API and IP Pools API. This functionality includes adding IP addresses to your account, assigning IP addresses to IP Pools and Subusers, among other tasks. More details about each operation can be found in the descriptions and schemas for each endpoint.
Regional Email sending in the European Union (EU) is GA for Twilio SendGrid Pro plan or above. Learn More
The IP Address Management API is in public beta at this time. This means the API and documentation are still in development and subject to change without advanced notice.
This operation will rename an IP Pool. An IP Pool name cannot start with a dot/period (.) or space.
Bearer <<YOUR_API_KEY_HERE>>
Specifies the unique ID for an IP Pool.
application/json
The name to assign to the IP Pool. An IP Pool name cannot begin with a space or period.
OK
The name assigned to the IP Pool.
The unique ID of the IP Pool.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);34const poolid = "ZGkrHSypTsudrGkmdpJJ";5const data = {6"name": "marketing_pool"7};89const request = {10url: `/v3/send_ips/pools/${poolid}`,11method: 'PUT',12body: data13}1415client.request(request)16.then(([response, body]) => {17console.log(response.statusCode);18console.log(response.body);19})20.catch(error => {21console.error(error);22});