await Promise.all([
fetch('https://api.callaro.ai/api/v1/phone_numbers/101', { headers: { 'X-Api-Key': process.env.CALLARO_API_KEY } }),
fetch('https://api.callaro.ai/api/v1/phone_numbers/101', { method: 'PATCH', headers: { 'X-Api-Key': process.env.CALLARO_API_KEY, 'Content-Type': 'application/json' }, body: JSON.stringify({ label: 'India Pool B' }) }),
fetch('https://api.callaro.ai/api/v1/phone_numbers/101/activate', { method: 'POST', headers: { 'X-Api-Key': process.env.CALLARO_API_KEY } }),
fetch('https://api.callaro.ai/api/v1/phone_numbers/sync', { method: 'POST', headers: { 'X-Api-Key': process.env.CALLARO_API_KEY } })
]);