Alianza IVR API
The IVR API from Alianza — 2 operation(s) for ivr.
The IVR API from Alianza — 2 operation(s) for ivr.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/alianza-ivr-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Alianza IVR API
version: '2'
description: 'Operations tagged IVR across 3 of this provider''s published API definitions: alianza-apidocs-swagger2-original.json, alianza-ivr-api-openapi.yml, alianza-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.d2.alianza.com
description: Development
- url: https://api.q2.alianza.com
description: QA
- url: https://api.b2.alianza.com
description: Beta
- url: https://api.alianza.com
description: Production
tags:
- name: IVR
paths:
/v2/partition/{partitionId}/account/{accountId}/ivr/{ivrId}:
get:
tags:
- IVR
summary: Retrieve IVR
description: Use to retrieve an IVR
operationId: retrieveIvr
parameters:
- name: X-AUTH-TOKEN
in: header
required: false
schema:
type: string
- name: partitionId
in: path
description: ID of partition
required: true
schema:
type: string
- name: accountId
in: path
description: ID of account
required: true
schema:
type: string
- name: ivrId
in: path
description: ID of IVR
required: true
schema:
type: string
responses:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
content:
application/json:
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid account ID or IVR ID supplied
'404':
description: IVR not found
responsesObject:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid account ID or IVR ID supplied
'404':
description: IVR not found
put:
tags:
- IVR
summary: Update IVR
description: Use to update an IVR
operationId: updateIvr
parameters:
- name: X-AUTH-TOKEN
in: header
required: false
schema:
type: string
- name: partitionId
in: path
description: ID of partition
required: true
schema:
type: string
- name: accountId
in: path
description: ID of account
required: true
schema:
type: string
- name: ivrId
in: path
description: ID of IVR
required: true
schema:
type: string
responses:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
content:
application/json:
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid IVR ID or invalid IVR object supplied
'404':
description: IVR not found
responsesObject:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid IVR ID or invalid IVR object supplied
'404':
description: IVR not found
requestBody:
content:
application/json:
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
description: IVR object
required: true
delete:
tags:
- IVR
summary: Delete IVR
description: Use to delete an IVR
operationId: deleteIvr
parameters:
- name: X-AUTH-TOKEN
in: header
required: false
schema:
type: string
- name: partitionId
in: path
description: ID of partition
required: true
schema:
type: string
- name: accountId
in: path
description: ID of account
required: true
schema:
type: string
- name: ivrId
in: path
description: ID of IVR
required: true
schema:
type: string
responses:
'200':
description: successful operation
responseSchema:
type: string
content:
application/json:
schema:
type: string
'400':
description: Invalid IVR ID
'404':
description: IVR not found
responsesObject:
'200':
description: successful operation
responseSchema:
type: string
schema:
type: string
'400':
description: Invalid IVR ID
'404':
description: IVR not found
/v2/partition/{partitionId}/account/{accountId}/ivr:
get:
tags:
- IVR
summary: Retrieve all IVRs for account
description: Use to retrieve a list of all IVRs for a account
operationId: retrieveIvrList
parameters:
- name: X-AUTH-TOKEN
in: header
required: false
schema:
type: string
- name: partitionId
in: path
description: ID of partition
required: true
schema:
type: string
- name: accountId
in: path
description: ID of account
required: true
schema:
type: string
responses:
'200':
description: successful operation
responseSchema:
type: array
items:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
content:
application/json:
schema:
type: array
items:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid partition ID or account ID supplied
'404':
description: IVRs not found
responsesObject:
'200':
description: successful operation
responseSchema:
type: array
items:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
schema:
type: array
items:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid partition ID or account ID supplied
'404':
description: IVRs not found
post:
tags:
- IVR
summary: Create IVR
description: Use to create an IVR
operationId: createIvr
parameters:
- name: X-AUTH-TOKEN
in: header
required: false
schema:
type: string
- name: partitionId
in: path
description: ID of partition
required: true
schema:
type: string
- name: accountId
in: path
description: ID of account
required: true
schema:
type: string
responses:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
content:
application/json:
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid IVR object supplied
'404':
description: IVR not found
responsesObject:
'200':
description: successful operation
responseSchema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
'400':
description: Invalid IVR object supplied
'404':
description: IVR not found
requestBody:
content:
application/json:
schema:
originalRef: IVRX
$ref: '#/components/schemas/IVRX'
description: IVR object
required: true
components:
schemas:
IVRComponentX:
type: object
discriminator:
propertyName: type
properties:
id:
type: string
left:
type: string
top:
type: string
name:
type: string
type:
type: string
enum:
- HANGUP
- MENU
- DIRECTORY
- GROUP
- INCOMING
- SCHEDULE
- DTMF
- MENU_FAILURE
- SCHEDULE_RULE_COMPONENT
- USER
- LINE_HUNTGROUP
- FORWARD
IVRX:
type: object
properties:
id:
type: string
accountId:
type: string
partitionId:
type: string
name:
type: string
top:
type: string
left:
type: string
fixedPosition:
type: boolean
ivrComponents:
type: array
items:
originalRef: IVRComponentX
$ref: '#/components/schemas/IVRComponentX'
ivrComponentMappings:
type: array
items:
originalRef: IVRComponentMappingX
$ref: '#/components/schemas/IVRComponentMappingX'
IVRComponentMappingX:
type: object
properties:
fromIvrComponentId:
type: string
toIvrComponentId:
type: string
securitySchemes:
X-Auth-Token:
type: apiKey
in: header
name: X-AUTH-TOKEN
x-refined-from:
- alianza-apidocs-swagger2-original.json
- alianza-ivr-api-openapi.yml
- alianza-openapi-original.yml