To use the Unstructured Workflow Endpoint to manage jobs, do the following:Documentation Index
Fetch the complete documentation index at: https://unstructured-53-docs-243-plugins.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
- To get a list of available jobs, use the
UnstructuredClientobject’sjobs.list_jobsfunction (for the Python SDK) or theGETmethod to call the/jobsendpoint (forcurlor Postman). Learn more. - To get information about a job, use the
UnstructuredClientobject’sjobs.get_jobfunction (for the Python SDK) or theGETmethod to call the/jobs/<job-id>endpoint (forcurlor Postman). Learn more. - A job is created automatically whenever a workflow runs on a schedule; see Create a workflow. A job is also created whenever you run a workflow manually; see Run a workflow.
- To cancel a running job, use the
UnstructuredClientobject’sjobs.cancel_jobfunction (for the Python SDK) or thePOSTmethod to call the/jobs/<job-id>/cancelendpoint (forcurlor Postman). Learn more.

