from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.get_start_data()
print(response.start_data){
"startData": "<unknown>"
}Retrieves the initial data (startData) that was used to initiate the current workflow run. This endpoint requires an ExecuteStepRequestContext with a workflowRunId.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.get_start_data()
print(response.start_data){
"startData": "<unknown>"
}Default Response
The initial data payload provided when this workflow run was started.