IVR Software Library
IVR Library Routine Descriptions
The following routine or parameter is maintained in the PACER and WIZARD IVR software library. These routines are developed for programmers who are creating and managing IVR application programs.
IVR programs can be written in C/C++ on Windows, Unix and Linux operating environments.
ivr_connect_dnis()
int
ivr_connect_dnis(char *dnis)
The
ivr_connect_dnis function routes the call back to the ACD.
The ACD will then route the call according to the rules defined by the DNIS.
Parameters
char *
|
dnis
|
Null termiated string containing the dnis in which the
call should be routed.
|
Return Value
Return
IVR_SUCCESS on a successful function call. On error the function returns one
of the IVR Error Codes.
Example
if(ivr_connect_dnis("123ABC") != IVR_SUCCESS){ ...handle error; }
|