Viewing Call Log
Requires FaxFinder 3.0.4 or higher.
Query Parameters |
limit=LIMIT Limit the number of results to LIMIT. index=INDEX (Must be used with limit) Index indicates where to start reading the data in the database. Use to page through data. |
|
HTTP Request Line |
GET /ffws/v1/call_log HTTP/1.1 |
|
HTTP Response Status Codes |
200 OK |
Shows call log. |
400 Bad Request |
The provided XML is not valid. |
FF240, FF440, or FF840 Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | GET /ffws/v1/call_log HTTP/1.1 content-type: application/xml authorization: Basic YWRtaW46YWRtaW4= ----------------------------------- HTTP/1.1 200 OK content-type: application/xml <? xml version=”1.0” encoding=”UTF-8”?> < response > < message >Success</ message > < call_entry > < modem ></ modem > < status ></ status > < fax_number ></ fax_number > < direction ></ direction > < pages ></ pages > < size ></ size > < connect_time ></ connect_time > < elapsed_time ></ elapsed_time > < init_time ></ init_time > < off_hook_time ></ off_hook_time > < scan_line_time ></ scan_line_time > < baud_rate ></ baud_rate > < data_compression ></ data_compression > < error_correction ></ error_correction > < width ></ width > < height ></ height > <!--Inbound calls only. --> < all_dtmf_digits ></ all_dtmf_digits > </ call_entry > </ response > |
FF240-IP Example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | GET /ffws/v1/call_log HTTP/1.1 content-type: application/xml authorization: Basic YWRtaW46YWRtaW4= ----------------------------------- HTTP/1.1 200 OK content-type: application/xml <? xml version=”1.0” encoding=”UTF-8”?> < response > < message >Success</ message > < call_entry > < channel ></ channel > < status ></ status > < fax_number ></ fax_number > < direction ></ direction > < pages ></ pages > < size ></ size > < connect_time ></ connect_time > < elapsed_time ></ elapsed_time > < baud_rate ></ baud_rate > < data_compression ></ data_compression > < error_correction ></ error_correction > < modulation ></ modulation > <!--Inbound calls only. --> < all_call_digits ></ all_call_digits > </ call_entry > </ response > |