GET
/
api
/
v2
/
workflow-runs
/
start-data
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.workflow_runs.get_start_data()
print(response.start_data)
{
  "startData": "<any>"
}

Response

200
application/json

Default Response

The response is of type object.