Elements that can be shared among more than one endpoint definition.
This endpoint gets amount of IP Addresses that can still be created during a given period and the price of those IPs.
Bearer <<YOUR_API_KEY_HERE>>
1const client = require('@sendgrid/client');2client.setApiKey(process.env.SENDGRID_API_KEY);345const request = {6url: `/v3/ips/remaining`,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});