Elements that can be shared among more than one endpoint definition.
This endpoint allows you to retrieve only assigned IP addresses.
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 based on the aggregate performance of all the senders who use it.
Bearer <<YOUR_API_KEY_HERE>>
Array of:
The IP address.
The IP pools that this IP address has been added to.
Indicates if this IP address is currently warming up.
The start date that this IP address was entered into warmup.
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);345const request = {6url: `/v3/ips/assigned`,7method: 'GET',89}1011client.request(request)12.then(([response, body]) => {13console.log(response.statusCode);14console.log(response.body);15})16.catch(error => {17console.error(error);18});