from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflows.deploy(
"workflowId",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
Creates a new deployment for the specified workflow ID, making the current version of the workflow live.
from samplehc import SampleHealthcare
client = SampleHealthcare(
api_key="My API Key",
)
response = client.v2.workflows.deploy(
"workflowId",
)
print(response.async_result_id)
{
"asyncResultId": "<string>"
}
The unique identifier of the workflow to deploy.
Default Response
The response is of type object
.