getIPs
This method retrieves a list of IP addresses associated with a specific customer.
Parameters
customerId (string, required): The UUID of the customer.
Returns
A JSON array of objects, each representing an IP address associated with the customer.
Usage Example
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.nexera.id/customers/:customerId/ips',
headers: {
'Accept': 'application/json',
'Authorization': 'Bearer <TOKEN>'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});