Response
Default Response
The initial data payload provided when this workflow run was started.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.get_start_data()
print(response.start_data)
{
"startData": "<any>"
}
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": "<any>"
}
Default Response
The initial data payload provided when this workflow run was started.