from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.resume_when_complete(
async_result_id="asyncResultId",
)
print(response.message)
{
"message": "<string>"
}
Registers an asynchronous task’s result ID to resume a workflow run upon its completion. This endpoint requires an ExecuteStepRequestContext with workflowRunId
and stepAddr
.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflow_runs.resume_when_complete(
async_result_id="asyncResultId",
)
print(response.message)
{
"message": "<string>"
}
Request accepted, processing to resume workflow has been initiated.