{ "opencollection": "1.0.0", "info": { "name": "Rancher Management Apps Clusters API", "version": "1.0" }, "items": [ { "info": { "name": "Clusters", "type": "folder" }, "items": [ { "info": { "name": "List clusters", "type": "http" }, "http": { "method": "GET", "url": "https://{rancher_host}/v3/clusters", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List clusters" }, { "info": { "name": "Create a cluster", "type": "http" }, "http": { "method": "POST", "url": "https://{rancher_host}/v3/clusters", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a cluster" }, { "info": { "name": "Retrieve a cluster", "type": "http" }, "http": { "method": "GET", "url": "https://{rancher_host}/v3/clusters/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a cluster" }, { "info": { "name": "Delete a cluster", "type": "http" }, "http": { "method": "DELETE", "url": "https://{rancher_host}/v3/clusters/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a cluster" } ] } ], "bundled": true }