updateIP
This method updates an IP address for a specific customer.
Parameters
- customerId (string, required): The UUID of the customer.
- id (string, required): The UUID of the IP address to be updated.
- ipAddress (string, required): The new IP address.
Returns
A JSON object confirming the successful update of the IP address.
Usage Example
const axios = require('axios');
let config = {
method: 'get',
maxBodyLength: Infinity,
url: 'https://api.nexera.id',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json',
'Authorization': 'Bearer <TOKEN>'
}
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});