Path Parameters
The slug of the Snowflake connection.
Body
application/json
The SQL query to execute.
Response
Query execution result.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.integrations.snowflake.query(
slug="slug",
query="query",
)
print(response)
[
{}
]
Execute a query against a configured Snowflake instance.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.integrations.snowflake.query(
slug="slug",
query="query",
)
print(response)
[
{}
]
The slug of the Snowflake connection.
The SQL query to execute.
Query execution result.