from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflows.query(
workflow_slug="workflowSlug",
query="query",
)
print(response)
[
{}
]
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflows.query(
workflow_slug="workflowSlug",
query="query",
)
print(response)
[
{}
]
The slug of the workflow to query.
Default Response
The response is of type object[]
.