POST
/
api
/
v2
/
workflow-runs
/
resume-when-complete
Python
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>"
}

Body

application/json

Response

202
application/json

Request accepted, processing to resume workflow has been initiated.