from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.unzip_async(
"documentId",
)
print(response.async_result_id){
"asyncResultId": "<string>"
}Given a document ID representing a ZIP file, unzip it, traverse the directory structure and return all PDFs found as a list of documents
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.unzip_async(
"documentId",
)
print(response.async_result_id){
"asyncResultId": "<string>"
}