{ "opencollection": "1.0.0", "info": { "name": "Open Liberty APIs Applications API", "version": "24.0.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Applications", "type": "folder" }, "items": [ { "info": { "name": "List Deployed Applications", "type": "http" }, "http": { "method": "GET", "url": "https://localhost:9443/applications", "params": [ { "name": "status", "value": "started", "type": "query", "description": "Filter by application status" } ] }, "docs": "Returns a list of all applications deployed on the server or cell." }, { "info": { "name": "Deploy a New Application", "type": "http" }, "http": { "method": "POST", "url": "https://localhost:9443/applications", "body": { "type": "multipart-form", "data": [ { "name": "file", "type": "text", "value": "" }, { "name": "name", "type": "text", "value": "" }, { "name": "contextRoot", "type": "text", "value": "" }, { "name": "targetServer", "type": "text", "value": "" } ] } }, "docs": "Deploys a new application to the server or cluster." }, { "info": { "name": "Get Application Details", "type": "http" }, "http": { "method": "GET", "url": "https://localhost:9443/applications/:appName", "params": [ { "name": "appName", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Returns details of a specific deployed application." }, { "info": { "name": "Update Application Configuration", "type": "http" }, "http": { "method": "PUT", "url": "https://localhost:9443/applications/:appName", "params": [ { "name": "appName", "value": "", "type": "path", "description": "Application name" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the configuration of a deployed application." }, { "info": { "name": "Uninstall an Application", "type": "http" }, "http": { "method": "DELETE", "url": "https://localhost:9443/applications/:appName", "params": [ { "name": "appName", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Uninstalls and removes a deployed application." }, { "info": { "name": "Start an Application", "type": "http" }, "http": { "method": "POST", "url": "https://localhost:9443/applications/:appName/start", "params": [ { "name": "appName", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Starts a deployed application." }, { "info": { "name": "Stop an Application", "type": "http" }, "http": { "method": "POST", "url": "https://localhost:9443/applications/:appName/stop", "params": [ { "name": "appName", "value": "", "type": "path", "description": "Application name" } ] }, "docs": "Stops a running application." }, { "info": { "name": "Restart an Application", "type": "http" }, "http": { "method": "POST", "url": "https://localhost:9443/applications/:appName/restart", "params": [ { "name": "appName", "value": "example_value", "type": "path" } ] }, "docs": "Restarts a deployed application." } ] } ], "bundled": true }