Python Fax - Hide Transaction from Online Control Panel

Download the Python fax code samples and library.

This sample demonstrates how to use HideFax with Python. This method removes a fax transmission from the outbound fax queue in the online control panel, while a record is still retained for billing and tracking purposes.

The Python fax snippet below allows you to hide a fax from the online control panel:

"""
A simple script hide a fax using the InterFAX 
HideFax SOAP API call.
"""
from interfax import client
 
print 'Testing HideFax...'
c = client.InterFaxClient('USERNAME','PASSWORD') # Enter your Interfax username/password here
result = c.hideFax( 123456789 ) # Enter the TransactionID of transaction to hide from outbound queue.
print '   HideFax returned with code %d' % result