{ "opencollection": "1.0.0", "info": { "name": "Wispr Backend Analytics Connectors API", "version": "0.5.2" }, "items": [ { "info": { "name": "Connectors", "type": "folder" }, "items": [ { "info": { "name": "Initiate Connection", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/connectors/connect", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Initiate Connection" }, { "info": { "name": "Raw Initiate Connection", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/connectors/raw_connect", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Solely meant for prototypes. This endpoint directly forwards a connection request to the underlying connector implementation.\n\nProduction code should use the `/connect` endpoint, as that is the only way to have a stable API\nthrough provider changes. Users of this endpoint should assume breaking changes might occur arbitrarily." }, { "info": { "name": "Get Connection Status", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/connectors/connection/:connection_id/status", "params": [ { "name": "connection_id", "value": "", "type": "path" } ], "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Get Connection Status" }, { "info": { "name": "List Connectors", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/v1/connectors", "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "List Connectors" }, { "info": { "name": "Disconnect", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/connectors/disconnect", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "Disconnect" }, { "info": { "name": "List Calendar Events", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/v1/connectors/list_calendar_events", "body": { "type": "json", "data": "{}" }, "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "docs": "List Calendar Events" } ] } ], "bundled": true }