{ "opencollection": "1.0.0", "info": { "name": "Tetrate Service Bridge REST APIs Applications API", "version": "2.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Applications", "type": "folder" }, "items": [ { "info": { "name": "List Applications", "type": "http" }, "http": { "method": "GET", "url": "https://{tsb-host}:8443/v2/organizations/:organization/tenants/:tenant/applications", "params": [ { "name": "organization", "value": "", "type": "path", "description": "Organization name" }, { "name": "tenant", "value": "", "type": "path", "description": "Tenant name" } ] }, "docs": "Returns all applications within a tenant." }, { "info": { "name": "Create Application", "type": "http" }, "http": { "method": "POST", "url": "https://{tsb-host}:8443/v2/organizations/:organization/tenants/:tenant/applications", "params": [ { "name": "organization", "value": "", "type": "path", "description": "Organization name" }, { "name": "tenant", "value": "", "type": "path", "description": "Tenant name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new application within a tenant." }, { "info": { "name": "Get Application", "type": "http" }, "http": { "method": "GET", "url": "https://{tsb-host}:8443/v2/organizations/:organization/tenants/:tenant/applications/:application", "params": [ { "name": "organization", "value": "", "type": "path", "description": "Organization name" }, { "name": "tenant", "value": "", "type": "path", "description": "Tenant name" }, { "name": "application", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Returns the details of a specific application." }, { "info": { "name": "Update Application", "type": "http" }, "http": { "method": "PUT", "url": "https://{tsb-host}:8443/v2/organizations/:organization/tenants/:tenant/applications/:application", "params": [ { "name": "organization", "value": "", "type": "path", "description": "Organization name" }, { "name": "tenant", "value": "", "type": "path", "description": "Tenant name" }, { "name": "application", "value": "", "type": "path", "description": "Application name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing application." }, { "info": { "name": "Delete Application", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tsb-host}:8443/v2/organizations/:organization/tenants/:tenant/applications/:application", "params": [ { "name": "organization", "value": "", "type": "path", "description": "Organization name" }, { "name": "tenant", "value": "", "type": "path", "description": "Tenant name" }, { "name": "application", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Deletes an application and its registered APIs." } ] } ], "bundled": true }