from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.hie.documents.upload(
description="description",
document_type={
"text": "text"
},
file_metadata_id="fileMetadataId",
patient_id="patientId",
)
print(response)
{}
Contributes a document to the HIE network for a specific patient.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.hie.documents.upload(
description="description",
document_type={
"text": "text"
},
file_metadata_id="fileMetadataId",
patient_id="patientId",
)
print(response)
{}
Default Response
The response is of type object
.