POST
/
api
/
v2
/
workflows
/
{workflowId}
/
deploy
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.workflows.deploy(
    "workflowId",
)
print(response.async_result_id)
{
  "asyncResultId": "<string>"
}

Path Parameters

workflowId
string
required

The unique identifier of the workflow to deploy.

Response

202
application/json

Default Response

The response is of type object.