POST
/
api
/
v2
/
integrations
/
snowflake
/
{slug}
/
query
import os
from samplehc import SampleHealthcare

client = SampleHealthcare(
    api_key=os.environ.get("SAMPLEHC_API_KEY"),  # This is the default and can be omitted
)
response = client.v2.integrations.snowflake.query(
    slug="slug",
    query="query",
)
print(response)
[
  {}
]

Path Parameters

slug
string
required

The slug of the Snowflake connection.

Body

application/json

Response

200
application/json

Query execution result.