Skip to main content
POST
/
workflows
/
{workflow_id}
/
runs
/
start
python
from notte_sdk import NotteClient

notte = NotteClient()
# retrieve the workflow
workflow = notte.Workflow("<workflow_id>")
# Run the workflow, providing variables
response = workflow.run(
    url="https://shop.notte.cc/"
)
print(
    f"Workflow completed with result: {response.result}"
)
"<any>"

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

x-notte-api-key
string
required
x-notte-request-origin
string | null
x-notte-sdk-version
string | null

Path Parameters

workflow_id
string
required

Response

Successful Response

The response is of type any.