Enable Text bot options
# support
c
Hi there, Thank you for your message. Our team is currently out of the office. We operate Monday through Friday, from 9:00 AM to 8:00 PM Pacific Standard Time (PST). We’ll get back to you as soon as possible during our normal business hours. If your message is urgent, please mark it accordingly or include “URGENT” in the subject line, and we’ll do our best to respond promptly. Warm regards, Vapi Customer Support Team
v
To enable and use text bot options in VAPI, follow the Chat Quickstart guide. After creating or selecting an assistant in your dashboard, you can send your first chat message using this example (replace with your actual API key and assistant ID):
Copy code
bash
curl -X POST https://api.vapi.ai/chat \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "assistantId": "your-assistant-id",
    "input": "Hi, I need help with my TechFlow account"
  }'
If you still don't see chat options, check the guide for setup steps: [VAPI Chat Quickstart](https://docs.vapi.ai/chat/quickstart). Source: - [Chat quickstart](https://docs.vapi.ai/chat/quickstart)
2 Views