memμrondocs
Console
API REFERENCE

List connections

List every third-party connection for the active organization, with its status and last sync run.

Requires authentication — a Bearer token or X-Memuron-Actor-Id header.

Query parameters

providerstringoptional

GET/memuron/connectors
curl https://api.memuron.com/memuron/connectors
200 OK
{
  "connections": [
    {
      "id": "…",
      "provider": "google-drive",
      "status": "active",
      "account_email": "person@example.com",
      "space_token": "space.work",
      "selection_count": 2,
      "revisions_retained": 1,
      "item_counts": { "synced": 42, "remote_deleted": 1 },
      "last_sync": {
        "status": "completed",
        "counts": { "ingest": 3, "unchanged": 39, "pending_deletions": 1 },
        "error_code": null
      }
    }
  ],
  "count": 1,
  "providers": ["google-drive"]
}