const widgetId = 'WIDGET_ID';
const response = await fetch(
`https://api.indigenius.ai/v1/widgets/${widgetId}`,
{
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
'X-API-Key': process.env.INDIGENIUS_API_KEY,
},
body: JSON.stringify({
assistantId: '665e4a34c65bb95f2f2d72e2',
background_color: '#FFFFFF',
text_color: '#111827',
button_color: '#0EA5E9',
button_text_color: '#FFFFFF',
border_color: '#E5E7EB',
focus_outline_color: '#38BDF8',
card_radius: 12,
button_radius: 8,
start_call_button: 'Start call',
end_call_button: 'End call',
call_to_action: 'Talk to Sales',
terms_and_condition: true,
terms_and_condition_content:
'By continuing, you agree to recording terms.',
allowed_origins: ['https://app.example.com'],
}),
},
);
console.log(await response.json());