GET
/
api
/
v2
/
documents
/
pdf-template
/
{slug}
/
metadata
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.documents.pdf_template.retrieve_metadata(
    "slug",
)
print(response.id)
{
  "id": "<string>",
  "fileName": "<string>",
  "presignedUrl": "<string>"
}

Path Parameters

slug
string
required

The slug of the PDF template.

Response

200
application/json

Successfully retrieved PDF template document metadata.