list_workflows
Retrieve and filter workflows from the Unstructured API by destination ID, source ID, or status to manage and monitor data processing tasks efficiently.
Instructions
List workflows from the Unstructured API.
Args:
destination_id: Optional destination connector ID to filter by
source_id: Optional source connector ID to filter by
status: Optional workflow status to filter by
Returns:
String containing the list of workflows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_id | No | ||
source_id | No | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"destination_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Destination Id"
},
"source_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Id"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
}
},
"title": "list_workflowsArguments",
"type": "object"
}