Get workflow definition with all steps.
Python
import requests url = "https://www.datalab.to/api/v1/workflows/workflows/{workflow_id}" headers = {"X-API-Key": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "id": 123, "name": "<string>", "team_id": 123, "steps": [ {} ] }
Successful Response
Response with workflow definition details.
Was this page helpful?