What XML does
Vobiz Voice XML controls the flow of a call. When a call comes in, Vobiz hits your webhook (answer_url) and expects an XML response describing what to do - speak text, play audio, gather digits, dial out, record, etc. See How XML Works.
When to use this builder
- Prototyping - sketch a call flow visually, then drop the XML into your webhook handler.
- Learning the schema - see valid attribute combinations for each element.
- Generating boilerplate - start from a working IVR / voicemail / dial template instead of from scratch.
Where to put the XML
Your webhook handler returns this XML in the response body withContent-Type: application/xml. Example in Python (Flask):
Related
How XML Works
The request/response flow Vobiz uses to drive call control.
Getting Started with XML
Set up your first webhook and return your first XML response.
XML Best Practices
Patterns for performance, error handling, and maintainability.
The Response Element
Reference: every XML must be wrapped in
<Response>.