Re-provision all phones.
OK
Re-provision a phone by it's MAC address.
MAC address.
const response = await fetch('https://HOSTNAME:8887/api/phones/reprovision', { method: 'POST', headers: {}, }); const data = await response.json();
const response = await fetch('https://HOSTNAME:8887/api/phones/{mac}/reprovision', { method: 'POST', headers: {}, }); const data = await response.json();