{ "opencollection": "1.0.0", "info": { "name": "Kong Enterprise Admin ACLs System Accounts API", "version": "3.14.0" }, "request": { "auth": { "type": "apikey", "key": "Kong-Admin-Token", "value": "{{Kong-Admin-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "System Accounts", "type": "folder" }, "items": [ { "info": { "name": "List System Accounts", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v3/system-accounts", "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": "Filter system accounts returned in the response." } ] }, "docs": "Returns an array of system accounts (SA) in the organization. Returns 400 if any filter parameters are invalid." }, { "info": { "name": "Create System Account", "type": "http" }, "http": { "method": "POST", "url": "{protocol}://{hostname}:{port}{path}/v3/system-accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a system account. Returns a 409 if a system account with the same name already exists." }, { "info": { "name": "Get a System Account", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v3/system-accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "ID of the system account." } ] }, "docs": "Returns the system account (SA) for the SA ID specified as a path parameter." }, { "info": { "name": "Update System Account", "type": "http" }, "http": { "method": "PATCH", "url": "{protocol}://{hostname}:{port}{path}/v3/system-accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "ID of the system account." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified system account. Returns a 409 if the updated name is the same as another system account in the organization." }, { "info": { "name": "Delete System Account", "type": "http" }, "http": { "method": "DELETE", "url": "{protocol}://{hostname}:{port}{path}/v3/system-accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path", "description": "ID of the system account." } ] }, "docs": "Deletes the specified system account. Returns 404 if the requested account was not found." } ] } ], "bundled": true }