from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.communication.send_fax(
document={
"id": "id",
"file_name": "fileName",
},
to="to",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
Initiates an asynchronous fax sending process. Returns an async result ID that can be used to track the status of the fax transmission.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.communication.send_fax(
document={
"id": "id",
"file_name": "fileName",
},
to="to",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
Accepted. Fax sending process initiated.