Create an IVR
Create an IVR menu. announcement is the SoundFile of type announcement
played when entering the menu; musicOnHold is an optional SoundFile of
type music. default_action controls what happens on caller timeout.
HTTP:
bearerAuth
User bearer token. Default authentication for customer-facing endpoints.
Obtain a token by calling POST /login with your credentials, then send it
on every subsequent request as Authorization: Bearer <token>. The token
inherits the permissions and PBX scope of the authenticated user.
- HTTP Authorization Scheme
bearer- Bearer format
Bearer <token>
accept
header · string
example:
application/jsonRequest body · required
Request schema
pbx_id*string · uuid
Pbx identifier (tenant). Must match the authenticated user's PBX.
name*string
length: 3–64
commentstring | null
length: 0–255
announcement*string · uuid
Sound file (type=announcement) played at the start of the menu
musicOnHoldstring | null · uuid
Sound file (type=music) played while caller is on hold
default_actionstring
Behaviour on caller timeout
enum:
hangup repeat default_stepResponses
Response schema
dataobject
Interactive Voice Response (IVR) menu. An IVR plays a sound file announcement
and then routes the caller to a destination based on the digit they press. The
available digit-to-destination mappings are held on the related IVR steps,
returned inline in the `steps` array.
id*string · uuid
Unique identifier of the IVR menu.
read-only
example:
550e8400-e29b-41d4-a716-446655440000pbx_id*string · uuid
Identifier of the Pbx (tenant) that owns this IVR. All IVRs are scoped to a single tenant.
example:
550e8400-e29b-41d4-a716-446655440001name*string
Human-readable label for the IVR menu, shown in the admin panel and used to identify the menu in call-flow configuration.
length: 0–128
example:
Customer Support Menucommentstring | null
Optional free-text note describing the purpose or behaviour of this IVR. May be null.
length: 0–255
example:
After-hours routing for the support lineannouncement_id*string · uuid
Identifier of the SoundFile announcement played to the caller when they enter this IVR menu. The referenced sound file is of type `announcement`.
example:
550e8400-e29b-41d4-a716-446655440002announcement_languagestring | null
Language override for this IVR's announcement. `null` (Auto) plays the
language variant detected/inherited earlier in the call, falling back to the
parent announcement. An ISO-639-1 code forces that specific variant.
enum:
en de fr lb es it pt nl pl ru tr sv da no fi cs sk el hu ro bg hr uk ar he hi ja ko zh id ms th vi nullexample:
frsteps*array<object>
Ordered collection of IVR steps belonging to this menu. Each step maps a
caller key press (or the default action) to a routing destination. The
array is empty when no steps have been configured yet.
Each item — A single keypad option inside an IVR (Interactive Voice Response) menu. When a
caller reaches the parent IVR, the digit they press is matched against `option`
(or the `default` step when no digit is pressed before the timeout) and the call
is routed to the resource identified by the polymorphic `target_type` plus
`target_id` pair. Legal routing targets are call flows and other IVRs, allowing
nested menus.
id*string · uuid
Unique identifier of the IVR step.
read-only
example:
550e8400-e29b-41d4-a716-446655440000pbx_id*string · uuid
Identifier of the Pbx (tenant) that owns this IVR step.
example:
550e8400-e29b-41d4-a716-446655440001ivr_id*string · uuid
Identifier of the parent IVR menu this step belongs to.
example:
550e8400-e29b-41d4-a716-446655440002target_type*string
Polymorphic morph class of the routing target, stored as the fully
qualified PHP class name. Together with `target_id` it identifies where the
call is routed when this option is selected. Valid targets are call flows
and IVRs.
enum:
App\Models\CallFlow App\Models\Ivrexample:
App\Models\CallFlowtarget_id*string · uuid
Identifier of the routing target resource. The kind of resource is given by
`target_type` (a CallFlow or an Ivr).
example:
550e8400-e29b-41d4-a716-446655440003namestring | null
Optional human-readable label for this step, shown in the admin UI to
describe where the option routes. Null when no label has been set.
example:
Sales departmentoption*string
The DTMF key that selects this step. The special value `default` is the
fallback applied when the caller does not press any key before the IVR
timeout.
enum:
default 0 1 2 3 4 5 6 7 8 9 * #example:
1languagestring | null
Announcement language override applied from this step onward. `null` (Auto)
means the language detected/inherited earlier in the call is kept. ISO-639-1
code otherwise.
enum:
en de fr lb es it pt nl pl ru tr sv da no fi cs sk el hu ro bg hr uk ar he hi ja ko zh id ms th vi nullexample:
frvoip_ivr_btn_idinteger | null · int32
Legacy integer identifier used to correlate this step with the
corresponding button on the VoIP platform side. Null for steps that have no
legacy mapping.
example:
42created_at*string | null · date-time
Timestamp when the IVR step was created.
read-only
example:
2024-03-01T08:29:07Zupdated_at*string | null · date-time
Timestamp when the IVR step was last updated.
read-only
example:
2024-03-01T08:29:07Zdeleted_atstring | null · date-time
Soft-delete timestamp. Null for active steps; set to the deletion time when
the step has been soft-deleted.
read-only
Authorization Token Missing. This error is returned when the authorization token is missing.
Response schema
errorstring
Error message
example:
Authorization Token is missingUnprocessable Parameters. This error is returned when a parameter is not valid.
Response schema
messagestring
example:
The given data was invalid.errorsobject
filterarray<string>
[]string
sortarray<string>
[]string
pagearray<string>
[]string
per_pagearray<string>
[]string
Server error. An unexpected condition was encountered on the server and the
request could not be completed. The body is a generic JSON envelope with a
`message` field. The response is logged on the server side; quote the
request URL + timestamp when reporting an issue.
Response schema
messagestring
exceptionstring
Only present in non-production environments.
filestring
Only present in non-production environments.
lineinteger
Only present in non-production environments.
post
https://cockpit.voxbi.com/api/v1/ivrs
Base URL
Request sample
curl -X POST 'https://cockpit.voxbi.com/api/v1/ivrs' \
-H 'Authorization: Bearer YOUR_TOKEN' \
-H 'Content-Type: application/json' \
--data '{"pbx_id":"550e8400-e29b-41d4-a716-446655440001","name":"Support IVR","comment":"Routes calls to sales or technical support","announcement":"550e8400-e29b-41d4-a716-446655440010","musicOnHold":"550e8400-e29b-41d4-a716-446655440011","default_action":"repeat"}'
const response = await fetch('https://cockpit.voxbi.com/api/v1/ivrs', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${YOUR_TOKEN}`,
},
body: JSON.stringify({
"pbx_id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Support IVR",
"comment": "Routes calls to sales or technical support",
"announcement": "550e8400-e29b-41d4-a716-446655440010",
"musicOnHold": "550e8400-e29b-41d4-a716-446655440011",
"default_action": "repeat"
}),
});
const data = await response.json();
console.log(data);
import requests
response = requests.post('https://cockpit.voxbi.com/api/v1/ivrs',
headers={'Authorization': f'Bearer {YOUR_TOKEN}'},
json={
"pbx_id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Support IVR",
"comment": "Routes calls to sales or technical support",
"announcement": "550e8400-e29b-41d4-a716-446655440010",
"musicOnHold": "550e8400-e29b-41d4-a716-446655440011",
"default_action": "repeat"
}
)
response.raise_for_status()
data = response.json()
print(data)
<?php
$context = stream_context_create([
'http' => [
'method' => 'POST',
'header' => "Content-Type: application/json\r\nAuthorization: Bearer YOUR_TOKEN",
'content' => '{
\"pbx_id\": \"550e8400-e29b-41d4-a716-446655440001\",
\"name\": \"Support IVR\",
\"comment\": \"Routes calls to sales or technical support\",
\"announcement\": \"550e8400-e29b-41d4-a716-446655440010\",
\"musicOnHold\": \"550e8400-e29b-41d4-a716-446655440011\",
\"default_action\": \"repeat\"
}',
],
]);
$response = file_get_contents('https://cockpit.voxbi.com/api/v1/ivrs', false, $context);
$data = json_decode($response, true);
print_r($data);
Sample request
{ … }
"pbx_id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Support IVR",
"comment": "Routes calls to sales or technical support",
"announcement": "550e8400-e29b-41d4-a716-446655440010",
"musicOnHold": "550e8400-e29b-41d4-a716-446655440011",
"default_action": "repeat"
}
{ … }
"data": { … }
"id": "550e8400-e29b-41d4-a716-446655440000",
"pbx_id": "550e8400-e29b-41d4-a716-446655440001",
"announcement_id": "550e8400-e29b-41d4-a716-446655440010",
"name": "Support IVR",
"comment": "Routes calls to sales or technical support",
"default_action": "repeat"
}
}
{ … }
"error": "Authorization Token is missing"
}
Cache-Control
string
example:
private, must-revalidate
Connection
string
example:
keep-alive
Content-Type
string
example:
application/json
Vary
string
example:
Origin
X-RateLimit-Limit
integer
Max requests allowed in the current rate-limit window.
example:
60
X-RateLimit-Remaining
integer
Requests remaining in the current rate-limit window.
example:
57{ … }
"errors": { … }
"filter": [ … ],
"The filter field must be an array."
],
"sort": [ … ],
"The sort field must be a string."
],
"page": [ … ],
"The page field must be an integer."
],
"per_page": [ … ]
"The per page field must be an integer."
]
}
}
Cache-Control
string
example:
private, must-revalidate
Connection
string
example:
keep-alive
Content-Type
string
example:
application/json
Vary
string
example:
Origin
X-RateLimit-Limit
integer
Max requests allowed in the current rate-limit window.
example:
60
X-RateLimit-Remaining
integer
Requests remaining in the current rate-limit window.
example:
57{ … }
"message": "Server Error"
}