Skip to main content
POST
/
api
/
v2
/
documents
/
{documentId}
/
unzip-async
Python
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>"
}

Path Parameters

documentId
string
required

The ID of the document to unzip. Must be a ZIP file.

Response

Default Response

asyncResultId
string
required

The ID of the async result for this job.

I