Skip to main content
GET
/
api
/
v2
/
policies
/
{policyId}
/
url
Python
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key="My API Key",
)
response = client.v2.policies.retrieve_presigned_url(
    "policyId",
)
print(response.mime_type)
{
  "url": "<string>",
  "mimeType": "<string>"
}

Path Parameters

policyId
string
required

Unique identifier for the policy

Response

Successfully retrieved presigned URL

url
string
required

Presigned URL to access the policy document

mimeType
string
required

MIME type of the policy document

I