List all available step types that can be used in workflows.
These are the building blocks users can compose into workflows.
Python
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)
{ "detail": [ { "loc": [ "<string>" ], "msg": "<string>", "type": "<string>" } ] }
Successful Response
Was this page helpful?