docs
UAEN
API Reference

List Step Types

List all available step types that can be used in workflows. These are the building blocks users can compose into workflows.

GET/api/v1/workflows/step-types

Authorizations

X-API-Keystringheaderrequired
Your API key for authentication

Cookies

wos-sessionstringcookie
Session cookie
access_tokenstringcookie
Access token cookie
datalab_active_teamstringcookie
Active team cookie

Response

Successful Response
List Step Types
import requests

url = "https://www.datalab.to/api/v1/workflows/step-types"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)
422Error
{
  "detail": [
    {
      "loc": ["<string>"],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}