{ "opencollection": "1.0.0", "info": { "name": "Kong Enterprise Admin ACLs Dashboards API", "version": "3.14.0" }, "request": { "auth": { "type": "apikey", "key": "Kong-Admin-Token", "value": "{{Kong-Admin-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "Dashboards", "type": "folder" }, "items": [ { "info": { "name": "List dashboards", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v2/dashboards", "params": [ { "name": "page[size]", "value": "", "type": "query", "description": "The maximum number of items to include per page. The last page of a collection may include fewer items." }, { "name": "page[number]", "value": "", "type": "query", "description": "Determines which page of the entities to retrieve." }, { "name": "filter", "value": "", "type": "query", "description": "Filters dashboards in the response." }, { "name": "sort", "value": "", "type": "query" } ] }, "docs": "Get a paginated list of dashboards that your account has access to." }, { "info": { "name": "Create a new dashboard", "type": "http" }, "http": { "method": "POST", "url": "{protocol}://{hostname}:{port}{path}/v2/dashboards", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new dashboard from the provided definition." }, { "info": { "name": "Get a single dashboard", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v2/dashboards/:dashboardId", "params": [ { "name": "dashboardId", "value": "", "type": "path", "description": "The dashboard's ID." } ] }, "docs": "Get a dashboard that your account has access to." }, { "info": { "name": "Update an existing dashboard", "type": "http" }, "http": { "method": "PUT", "url": "{protocol}://{hostname}:{port}{path}/v2/dashboards/:dashboardId", "params": [ { "name": "dashboardId", "value": "", "type": "path", "description": "The dashboard's ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update an existing dashboard, replacing its definition with the provided one." }, { "info": { "name": "Delete an existing dashboard", "type": "http" }, "http": { "method": "DELETE", "url": "{protocol}://{hostname}:{port}{path}/v2/dashboards/:dashboardId", "params": [ { "name": "dashboardId", "value": "", "type": "path", "description": "The dashboard's ID." } ] }, "docs": "Delete an existing dashboard." } ] } ], "bundled": true }