Skip to content

Python SDK API Reference

Workflow Service

WorkflowService

WorkflowService(workflow_uuid)

Opaque Workflow Service API wrapper.

This class provides a convenient interface to submit data to a registered workflow endpoint deployed on a specific Opaque dataplane.

submit

submit(inputs, request_timeout_seconds=WORKFLOW_REQUEST_TIMEOUT_SECONDS)

Submits input data to the workflow and returns the response.

Parameters:

Name Type Description Default
inputs dict

Dictionary of input values required by the workflow. Example:

required
request_timeout_seconds int

The timeout in seconds for the request. Defaults to 60 seconds.

WORKFLOW_REQUEST_TIMEOUT_SECONDS

Returns:

Type Description
dict

Parsed response from the workflow endpoint.