Skip to main content
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
asyncResultId
string
required

The unique identifier of the asynchronous result to monitor before resuming.

Response

Request accepted, processing to resume workflow has been initiated.

Request accepted, processing to resume workflow has been initiated.

message
string
required

A message indicating the request has been accepted for processing.