v1

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-25173140700.7 KB
AuthConnector

List connector status

List connectors available to the user's tenant with their per-user consent status.

get/auth/connectors/status

Query parameters

cookie_namestring nullable

Response

Successful Response

connector_idinteger required

Unique identifier of the connector.

namestring required

Human-readable connector name.

connectedboolean required

Whether the current user has a valid consent for this connector.

needs_consentboolean required

Whether the user must (re)grant consent to use this connector.

missing_capsstring[] required

Capabilities not yet covered by the user's consent.

Example response

[
  {
    "connector_id": 3,
    "name": "OneDrive",
    "connected": true,
    "missing_caps": []
  }
]