This function retrieves all Network IVR Lists from the client account.
|
None
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
A JSON Structure containing the following fields:
Field | Type | Data |
---|---|---|
filter | String | The applied filter. This is reserved for future use. |
limitStart | Integer | The first record index. Currently 0, reserved for future use. |
limitPageSize | Integer | The number of records. -1 indicates all records. Reserved for future use. |
records | NetworkIVRList [] | An array of records. |
count | Integer | The number of records returned. |
orderBy | String | The field used to sort the records. |
ascending | Boolean | Whether the array of records is sorted ascending or descending. |
status | Integer | The return code (also provided by the http status code). |
|
This function retrieves the entries in a network IVR list.
|
Parameter | Where | Type | Data |
---|---|---|---|
networkIVRListsID | URL | Integer | The ID of the NetworkIVRList. |
Responses
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
A JSON Structure containing the following fields:
Field | Type | Data |
---|---|---|
filter | String | The applied filter. This is reserved for future use. |
limitStart | Integer | The first record index. Currently 0, reserved for future use. |
limitPageSize | Integer | The number of records. -1 indicates all records. Reserved for future use. |
records | NetworkIVRListEntry [] | An array of network IVR list entries. |
count | Integer | The number of records returned. |
orderBy | String | The field used to sort the records. |
ascending | Boolean | Whether the array of records is sorted ascending or descending. |
status | Integer | The return code (also provided by the http status code). |
|
This function adds a new entry to a network IVR list.
|
Parameter | Where | Type | Data |
---|---|---|---|
networkIVRListsID | URL | Integer | The ID of the NetworkIVRList. |
A JSON structure containing the new entry to add.
Example:
{ "Field1": "Field 1 Value", "Field2": "Field 2 Value", "Field3": "Field 3 Value", "Field4": "Field 4 Value", "ExtraData": "Extra Data Value" } |
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
This function updates an entry in a network IVR list.
|
Parameter | Where | Type | Data |
---|---|---|---|
networkIVRListsID | URL | Integer | The ID of the NetworkIVRList. |
networkIVRListEntryID | URL | Integer | The ID of the NetworkIVRListEntry to update. |
A JSON structure containing the data to change.
Example:
{ "Field1": "Field 1 Value", "Field2": "Field 2 Value", "Field3": "Field 3 Value", "Field4": "Field 4 Value", "ExtraData": "Extra Data Value" } |
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.
This function deletes an entry in a network IVR list.
|
Parameter | Where | Type | Data |
---|---|---|---|
networkIVRListsID | URL | Integer | The ID of the NetworkIVRList. |
networkIVRListEntryID | URL | Integer | The ID of the NetworkIVRListEntry to update. |
If the request is performed, 200 OK is returned. See Return Codes for further possible status codes.