To use the Unstructured API’s workflow operations to manage workflows, do the following:Documentation Index
Fetch the complete documentation index at: https://docs.unstructured.io/llms.txt
Use this file to discover all available pages before exploring further.
| Task | Python function | curl |
|---|---|---|
| Get a list of available workflows | workflows.list_workflows | GET /workflows |
| Get information about a workflow | workflows.get_workflow | GET /workflows/<workflow-id> |
| Create a workflow | workflows.create_workflow | POST /workflows |
| Run a workflow manually | workflows.run_workflow | POST /workflows/<workflow-id>/run |
| Update a workflow | workflows.update_workflow | PUT /workflows/<workflow-id> |
| Delete a workflow | workflows.delete_workflow | DELETE /workflows/<workflow-id> |
| Get a list of available workflow templates | GET /templates | |
| Get information about a workflow template | GET /templates/<template-id> |

