Unable to connect to sales team and requesting to ...
# support
k
Hi Vapi Team, I’ve been trying to get in touch with the sales team regarding an enterprise plan, but haven’t been able to connect yet. We are planning to scale usage to ~13,000 minutes per month initially (with growth up to 18,000) and would like to request a revised per-minute rate of $0.01 (down from $0.05) based on this committed volume. Additionally, we are working on integrating Vapi.ai with Voiceflow and would appreciate guidance or resources to ensure a smooth setup. Could someone from the sales/enterprise team please connect with me urgently?
v
To integrate Vapi.ai with Voiceflow, you need to host a proxy server that connects Voiceflow's AI features to Vapi's text completion API. Here’s a high-level example:
Copy code
js
// Pseudocode for proxying requests
app.post('/voiceflow-proxy', async (req, res) => {
  const vapiResponse = await fetch('https://api.vapi.ai/text-completion', { method: 'POST', body: req.body });
  res.send(await vapiResponse.json());
});
This setup allows Voiceflow to send requests to your proxy, which then communicates with Vapi and returns responses to Voiceflow. For more details, see the [Vapi x Voiceflow documentation](https://docs.vapi.ai/providers/voiceflow). Source: - [Vapi x Voiceflow](https://docs.vapi.ai/providers/voiceflow)
k
Unable to connect to Vapi sales team for enterprise plan and reduction of cost-per-minute from 0.05$ to 0.02$ @User @User
c
We can expedite this process for you. Please give us these details: - Company size (no. of employees) - Company location
2 Views