list_destinations
Retrieve a list of available destinations from the Unstructured API, optionally filtered by connector type, to manage data flow and integration points.
Instructions
List available destinations from the Unstructured API.
Args:
destination_type: Optional destination connector type to filter by
Returns:
String containing the list of destinations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_type | No |
Input Schema (JSON Schema)
{
"properties": {
"destination_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Destination Type"
}
},
"title": "list_destinationsArguments",
"type": "object"
}