Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,7 @@
"platform/sources/overview",
"platform/sources/azure-blob-storage",
"platform/sources/confluence",
"platform/sources/couchbase",
"platform/sources/databricks-volumes",
"platform/sources/dropbox",
"platform/sources/elasticsearch",
Expand All @@ -488,6 +489,7 @@
"platform/sources/mongodb",
"platform/sources/onedrive",
"platform/sources/outlook",
"platform/sources/postgresql",
"platform/sources/s3",
"platform/sources/salesforce",
"platform/sources/sharepoint"
Expand Down Expand Up @@ -526,6 +528,7 @@
"platform/api/sources/overview",
"platform/api/sources/azure-blob-storage",
"platform/api/sources/confluence",
"platform/api/sources/couchbase",
"platform/api/sources/databricks-volumes",
"platform/api/sources/dropbox",
"platform/api/sources/elasticsearch",
Expand All @@ -534,6 +537,7 @@
"platform/api/sources/mongodb",
"platform/api/sources/onedrive",
"platform/api/sources/outlook",
"platform/api/sources/postgresql",
"platform/api/sources/s3",
"platform/api/sources/salesforce",
"platform/api/sources/sharepoint"
Expand Down
2 changes: 2 additions & 0 deletions platform/api/sources/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ For the list of specific settings, see:

- [Azure](/platform/api/sources/azure-blob-storage) (`source_type=azure`)
- [Confluence](/platform/api/sources/confluence) (`source_type=confluence`)
- [Couchbase](/platform/api/sources/couchbase) (`source_type=couchbase`)
- [Databricks Volumes](/platform/api/sources/databricks-volumes) (`source_type=databricks_volumes`)
- [Dropbox](/platform/api/sources/dropbox) (`source_type=dropbox`)
- [Elasticsearch](/platform/api/sources/elasticsearch) (`source_type=elasticsearch`)
Expand All @@ -23,6 +24,7 @@ For the list of specific settings, see:
- [MongoDB](/platform/api/sources/mongodb) (`source_type=mongodb`)
- [OneDrive](/platform/api/sources/onedrive) (`source_type=onedrive`)
- [Outlook](/platform/api/sources/outlook) (`source_type=outlook`)
- [PostgreSQL](/platform/api/sources/postgresql) (`source_type=postgres`)
- [S3](/platform/api/sources/s3) (`source_type=s3`)
- [Salesforce](/platform/api/sources/salesforce) (`source_type=salesforce`)
- [SharePoint](/platform/api/sources/sharepoint) (`source_type=sharepoint`)
Expand Down
2 changes: 2 additions & 0 deletions platform/connectors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The Unstructured Platform supports connecting to the following source and destin

- [Azure](/platform/sources/azure-blob-storage)
- [Confluence](/platform/sources/confluence)
- [Couchbase](/platform/sources/couchbase)
- [Databricks Volumes](/platform/sources/databricks-volumes)
- [Dropbox](/platform/sources/dropbox)
- [Elasticsearch](/platform/sources/elasticsearch)
Expand All @@ -21,6 +22,7 @@ The Unstructured Platform supports connecting to the following source and destin
- [MongoDB](/platform/sources/mongodb)
- [OneDrive](/platform/sources/onedrive)
- [Outlook](/platform/sources/outlook)
- [PostgreSQL](/platform/sources/postgresql)
- [S3](/platform/sources/s3)
- [Salesforce](/platform/sources/salesforce)
- [SharePoint](/platform/sources/sharepoint)
Expand Down
2 changes: 2 additions & 0 deletions platform/sources/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ To create a source connector:

- [Azure](/platform/sources/azure-blob-storage)
- [Confluence](/platform/sources/confluence)
- [Couchbase](/platform/sources/couchbase)
- [Databricks Volumes](/platform/sources/databricks-volumes)
- [Dropbox](/platform/sources/dropbox)
- [Elasticsearch](/platform/sources/elasticsearch)
Expand All @@ -28,6 +29,7 @@ To create a source connector:
- [MongoDB](/platform/sources/mongodb)
- [OneDrive](/platform/sources/onedrive)
- [Outlook](/platform/sources/outlook)
- [PostgreSQL](/platform/sources/postgresql)
- [S3](/platform/sources/s3)
- [Salesforce](/platform/sources/salesforce)
- [SharePoint](/platform/source/sharepoint)
Expand Down
2 changes: 1 addition & 1 deletion snippets/source_connectors/postgresql_rest_change.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```bash REST (Change)
curl --request 'PUT' --location \
"$UNSTRUCTURED_API_URL/destinations" \
"$UNSTRUCTURED_API_URL/sources/<connector-id>" \
--header 'accept: application/json' \
--header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \
--header 'content-type: application/json' \
Expand Down
2 changes: 1 addition & 1 deletion snippets/source_connectors/postgresql_rest_create.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```bash REST (Create)
curl --request 'POST' --location \
"$UNSTRUCTURED_API_URL/destinations" \
"$UNSTRUCTURED_API_URL/sources" \
--header 'accept: application/json' \
--header "unstructured-api-key: $UNSTRUCTURED_API_KEY" \
--header 'content-type: application/json' \
Expand Down