POST
/
api
/
v2
/
workflow-runs
/
resume-when-complete
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.resume_when_complete(
    async_result_id="asyncResultId",
)
print(response.message)
{
  "message": "<string>"
}

Body

application/json

Response

202
application/json

Request accepted, processing to resume workflow has been initiated.