POST
/
api
/
v2
/
workflows
/
{workflowSlug}
/
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.workflows.query(
    workflow_slug="workflowSlug",
    query="query",
)
print(response)
[
  {}
]

Path Parameters

workflowSlug
string
required

The slug of the workflow to query.

Body

application/json

Response

200
application/json

Default Response

The response is of type object[].