Body
application/json
The JSON object to transform.
Response
200 - application/json
Default Response
The HTML string.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.transform_json_to_html()
print(response.html)
{
"html": "<string>"
}
Transforms a Sample JSON document to HTML
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.documents.transform_json_to_html()
print(response.html)
{
"html": "<string>"
}
The JSON object to transform.
Default Response
The HTML string.