const response = await fetch(
'https://app.supported.tech/api/user/whatsapp/voice/request',
{
method: 'POST',
headers: {
Authorization: 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json',
},
body: JSON.stringify({
sender_id: 12,
recipient_phone: '+40711222333',
recipient_name: 'Ana Pop',
}),
}
);
console.log(await response.json());