Path Parameters
The ID of the document to unzip. Must be a ZIP file.
Response
Default Response
The ID of the async result for this job.
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>"
}
The ID of the document to unzip. Must be a ZIP file.
Default Response
The ID of the async result for this job.