from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.retrieve_csv_content(
"documentId",
)
print(response.data)
{
"data": [
{}
]
}
Retrieves the content of a CSV document as a structured JSON array.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.retrieve_csv_content(
"documentId",
)
print(response.data)
{
"data": [
{}
]
}
The unique identifier of the CSV document.
Successfully retrieved CSV content.