Applications
Create an Application
Create a Vobiz voice application by registering your answer_url and hangup_url webhooks - the first step to handling inbound calls and messages programmatically.
POST
Create an Application
Authentication required:
X-Auth-ID- Your account Auth IDX-Auth-Token- Your account Auth TokenContent-Type: application/json
Parameters
The three required fields areapp_name, answer_url, and answer_method.
| Field | Type | Required | Description |
|---|---|---|---|
app_name | string | Yes | The name of your application. Allowed values: letters (upper and lower case), numbers (0–9), and only two special characters: - (hyphen) and _ (underscore). |
answer_url | string | Yes | The URL fetched when a call executes this application. Must return valid VobizXML. |
answer_method | string | Yes | HTTP method used to call answer_url. One of GET or POST. Defaults to POST. |
hangup_url | string | No | URL notified when the call hangs up. If omitted, defaults to answer_url - your answer handler then also receives hangup callbacks. |
hangup_method | string | No | HTTP method used to call hangup_url. One of GET or POST. Defaults to POST. |
fallback_answer_url | string | No | Invoked by Vobiz only if answer_url is unreachable, times out, or returns invalid VobizXML. Must itself return valid VobizXML. With no fallback set, the call drops on answer_url failure. |
fallback_method | string | No | HTTP method used to call fallback_answer_url. One of GET or POST. Defaults to POST. |
message_url | string | No | URL notified when an inbound message is received. Not set by default. |
message_method | string | No | HTTP method used to call message_url. One of GET or POST. Defaults to POST. |
default_number_app | boolean | No | If true, newly created numbers without an app_id are routed to this application. Defaults to false. Does not retroactively re-route existing numbers. |
default_endpoint_app | boolean | No | If true, newly created endpoints without an application are routed to this application. Defaults to false. Does not retroactively re-route existing endpoints. |
sub_account | string | No | auth_id of the sub-account this application belongs to. Cannot be changed after creation. |
application_type | string | No | The type of application. Typically XML. |
default_app | boolean | No | Whether this is the account-level default application. Defaults to false. |
enabled | boolean | No | Whether the application is enabled. Defaults to true. |
log_incoming_message | boolean | No | If false, incoming messages to Vobiz phone numbers associated with this application are not logged. Defaults to true. |
public_uri | boolean | No | Whether the application’s sip_uri is reachable by external SIP systems. Defaults to false. |
sip_transfer_method | string | No | HTTP method used for SIP transfer callbacks. One of GET or POST. |
sip_transfer_url | string | No | URL notified during a SIP transfer. |
sip_uri | string | No | SIP URI associated with the application. |
Creating an application is normally step one. After it returns an
app_id, attach a number or set application on an endpoint to start routing calls.Request Body
JSON
Response Examples
400 is returned when a required field is missing or a URL is malformed; a 401 when X-Auth-ID/X-Auth-Token are missing or wrong.
cURL Example
cURL
Authorizations
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Path Parameters
Your account Auth ID
Example:
"MA_XXXXXX"