list_sources
Retrieve available source connectors from the Unstructured API, optionally filtering by a specific type to streamline data integration and workflow management.
Instructions
List available sources from the Unstructured API.
Args:
source_type: Optional source connector type to filter by
Returns:
String containing the list of sources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source_type | No |
Input Schema (JSON Schema)
{
"properties": {
"source_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Type"
}
},
"title": "list_sourcesArguments",
"type": "object"
}