Viewing Modem, Channel, System, Printer, and Share Status
Requires FaxFinder 3.0.4 or higher.
HTTP Request Line |
GET /ffws/v1/status HTTP/1.1 GET /ffws/v1/status/MODEM HTTP/1.1 (FF240, FF440, or FF840) GET /ffws/v1/status/CHANNEL HTTP/1.1 (FF240-IP) GET /ffws/v1/status/SYSTEM HTTP/1.1 GET /ffws/v1/status/PRINTER HTTP/1.1 GET /ffws/v1/status/SHARE HTTP/1.1 |
|
HTTP Response Status Codes |
200 OK |
Shows status information. |
400 Bad Request |
The provided XML is not valid. |
FF240, FF440, or FF840 Example
GET /ffws/v1/status 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> <status> <modem> <number_inbound></number_inbound> <number_outbound></number_outbound> <number_idle></number_idle> </modem> <system> <uptime></uptime> <current_time></current_time> <time_server></time_server> </system> <printer> <name></name> <status></status> <jobs></jobs> </printer> <network_share> <share></share> <status></status> </network_share> </status> </response>
FF240-IP Example
GET /ffws/v1/status 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> <status> <channel> <number_inbound></number_inbound> <number_outbound></number_outbound> <number_idle></number_idle> </channel> <system> <uptime></uptime> <current_time></current_time> <time_server></time_server> </system> <printer> <name></name> <status></status> <jobs></jobs> </printer> <network_share> <share></share> <status></status> </network_share> </status> </response>