{ "opencollection": "1.0.0", "info": { "name": "APIGen Connectors API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Connectors", "type": "folder" }, "items": [ { "info": { "name": "APIGen List Connectors", "type": "http" }, "http": { "method": "GET", "url": "https://api.apigen.com/v1/projects/:projectId/connectors", "params": [ { "name": "projectId", "value": "", "type": "path" }, { "name": "limit", "value": "", "type": "query" }, { "name": "offset", "value": "", "type": "query" } ] }, "docs": "Returns all connectors configured for a project." }, { "info": { "name": "APIGen Create a Connector", "type": "http" }, "http": { "method": "POST", "url": "https://api.apigen.com/v1/projects/:projectId/connectors", "params": [ { "name": "projectId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new connector to an external data source such as a database, third-party API, or file store." }, { "info": { "name": "APIGen Get a Connector", "type": "http" }, "http": { "method": "GET", "url": "https://api.apigen.com/v1/projects/:projectId/connectors/:connectorId", "params": [ { "name": "projectId", "value": "", "type": "path" }, { "name": "connectorId", "value": "", "type": "path" } ] }, "docs": "Returns a single connector by ID." }, { "info": { "name": "APIGen Update a Connector", "type": "http" }, "http": { "method": "PUT", "url": "https://api.apigen.com/v1/projects/:projectId/connectors/:connectorId", "params": [ { "name": "projectId", "value": "", "type": "path" }, { "name": "connectorId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing connector configuration." }, { "info": { "name": "APIGen Delete a Connector", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.apigen.com/v1/projects/:projectId/connectors/:connectorId", "params": [ { "name": "projectId", "value": "", "type": "path" }, { "name": "connectorId", "value": "", "type": "path" } ] }, "docs": "Deletes a connector." } ] } ], "bundled": true }