CDR Exports

CDR Exports

CDR Exports

Retrieve the information for all active customers cdr exports

GET

json object

URI

/:tokenid/cdr/exports

Example

Request

Example Javascript/Jquery

$.ajax({     url: '/api/892f86d5-da86-4e98-9343-1976a375/cdr/exports',     type: 'GET',     contentType: 'application/json',     success: function( response ) {         console.log(response);         }     });

Response

Success Result

 

{     "success":true,     "data": [         {             "cid":"1234",             "company":"Test Company", "frequency":"daily",             "path":"some_folder/daily", "format":"basic", "lastRun":"2022-02-26 02:00:00", "nextRun":"2022-02-27 02:00:00"         } ] }

CDR Exports - Include Inactive

Retrieve the information for all customers cdr exports, including customers who won’t export again

GET

json object

URI

/:tokenid/cdr/exports/include_inactive

Example

Request

Example Javascript/Jquery

$.ajax({     url: '/api/892f86d5-da86-4e98-9343-1976a375/cdr/exports/include_inactive',     type: 'GET',     contentType: 'application/json',     success: function( response ) {         console.log(response);         }     });

Response

Success Result

 

{     "success":true,     "data": [         {             "cid":"1234",             "company":"Test Company", "frequency":"daily",             "path":"some_folder/daily", "format":"basic", "lastRun":"2022-02-26 02:00:00", "nextRun":null         } ] }