{ "opencollection": "1.0.0", "info": { "name": "Sandbox Banking Glyue Integration Gateway Adapters Integrations API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Integrations", "type": "folder" }, "items": [ { "info": { "name": "List Integrations", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sandboxbanking.com/api/integrations", "params": [ { "name": "status", "value": "", "type": "query", "description": "Filter integrations by status." }, { "name": "page", "value": "", "type": "query", "description": "Page number for pagination." }, { "name": "page_size", "value": "", "type": "query", "description": "Number of results per page." } ] }, "docs": "Returns a list of all integration workflows configured in the Glyue platform for the authenticated tenant." }, { "info": { "name": "Create Integration", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.sandboxbanking.com/api/integrations", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new integration workflow in the Glyue platform." }, { "info": { "name": "Get Integration", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.sandboxbanking.com/api/integrations/:integrationId", "params": [ { "name": "integrationId", "value": "", "type": "path", "description": "Unique integration identifier." } ] }, "docs": "Returns details for a specific integration workflow." }, { "info": { "name": "Update Integration", "type": "http" }, "http": { "method": "PUT", "url": "https://{tenant}.sandboxbanking.com/api/integrations/:integrationId", "params": [ { "name": "integrationId", "value": "", "type": "path", "description": "Unique integration identifier." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing integration workflow configuration." }, { "info": { "name": "Delete Integration", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenant}.sandboxbanking.com/api/integrations/:integrationId", "params": [ { "name": "integrationId", "value": "", "type": "path", "description": "Unique integration identifier." } ] }, "docs": "Deletes an integration workflow from the platform." }, { "info": { "name": "Run Integration", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.sandboxbanking.com/api/integrations/:integrationId/run", "params": [ { "name": "integrationId", "value": "", "type": "path", "description": "Unique integration identifier." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Executes an integration workflow synchronously or asynchronously with the provided input payload. Returns the run ID for status tracking." } ] } ], "bundled": true }