v1
latestOpenAPI 3.1.02026-07-2268276396.6 KBConnectors
Get connector by ID
Returns full details for a single connector by its UUID. Use this to inspect connector metadata and configuration. Credentials and secrets are never included in the response.
get/contents/v1/connectors/{connector_id}
Path parameters
connector_idstring uuid required
Example:019a9612-bfad-758c-884e-37dd8c6ad2cb
UUID of the connector (returned when creating or listing connectors).
Response
The connector object with type-specific config. For sharepoint, config is always {} (session_id is never returned).
Example response
{
"connector_id": "019a9612-bfad-758c-884e-37dd8c6ad2cb",
"user_id": "user_id_001",
"org_id": "org_id_001",
"share_with_org": true,
"label": "Broker Research - Daily Reports",
"description": "Collects daily reports from the broker's research team",
"config": {
"allowed_emails": [
"user@example.com",
"admin@example.com"
],
"email_hash": "a1b2c3d4e5f6",
"email": "connector@bigdata.com"
},
"files_count": 10,
"last_sync_at": "2026-04-07T09:36:34.195040Z",
"last_sync_status": "SUCCESS",
"last_sync_count": 3200,
"created_at": "2026-02-11T11:01:09.574095Z",
"updated_at": "2026-02-11T11:01:09.574102Z"
}