Catalog and connection endpoints are [User+Key]. API keys use
connectors:read, connectors:write, or connectors:delete. The provider callback is public and validates its signed state.Endpoints
| Method | Path | Description | Auth |
|---|---|---|---|
GET | /connectors/catalog | List available connectors | [User+Key] |
POST | /connectors/catalog/by-slugs | Get catalog entries by slug | [User+Key] |
POST | /connectors/status | Check connection status | [User+Key] |
POST | /connectors/add | Start an account connection | [User+Key] |
DELETE | /connectors/:slug | Disconnect an account | [User+Key] |
GET | /connectors/auth/callback | Complete provider authorization | [Public callback] |
List the catalog
GET /connectors/catalog
Zero-based pagination offset.
Page size from 1 to 100.
slug, display name, description, logo, and category, plus pagination fields.
Get connectors by slug
POST /connectors/catalog/by-slugs
Between 1 and 100 canonical connector slugs.
Check connection status
POST /connectors/status
Connector slugs to inspect.
Tenant for an API-key-based connection.
Non-PII identifier for the API-served end user who owns the connection.
Connect an account
POST /connectors/add
Canonical connector slug.
Tenant for API-key authentication.
External end user who will own the connection.
Final destination after AutoSage completes the provider callback.
redirect_url for the account authorization flow and an already_connected boolean. Open the URL in the user’s browser.
Disconnect an account
DELETE /connectors/:slug
For API-key calls, pass tenant_id and external_subject_id as query parameters so AutoSage resolves the same connection owner used during setup.
Authorization callback
GET /connectors/auth/callback
This browser callback receives provider status, account information, and signed state. Applications normally do not call it directly: start with /connectors/add and follow the returned redirect URL.
Next steps
Configure agents
Enable connected apps on a deployed agent.
Agents API
Check integration readiness and deploy connector slugs.