{ "opencollection": "1.0.0", "info": { "name": "Kong Enterprise Admin ACLs Portal Developers API", "version": "3.14.0" }, "request": { "auth": { "type": "apikey", "key": "Kong-Admin-Token", "value": "{{Kong-Admin-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "Portal Developers", "type": "folder" }, "items": [ { "info": { "name": "List Developers", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v3/portals/:portalId/developers", "params": [ { "name": "portalId", "value": "", "type": "path", "description": "ID of the portal." }, { "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": "sort", "value": "", "type": "query", "description": "Sorts a collection of developers. Supported sort attributes are:\n - created_at\n - updated_at\n - email\n - name\n - status\n" }, { "name": "filter", "value": "", "type": "query", "description": "Filter developers returned in the response." } ] }, "docs": "Lists the developers that have registered for this portal. Each developer can be registered to one portal and must be approved to login unless using the developer auto-approve setting." }, { "info": { "name": "Get a Developer", "type": "http" }, "http": { "method": "GET", "url": "{protocol}://{hostname}:{port}{path}/v3/portals/:portalId/developers/:developerId", "params": [ { "name": "portalId", "value": "", "type": "path", "description": "ID of the portal." }, { "name": "developerId", "value": "", "type": "path", "description": "ID of the developer." } ] }, "docs": "Returns information about a single developer in this portal. Each developer manages a set applications, providing them credentials to access registered APIs. Developer registration access can be limited to specific APIs using RBAC." }, { "info": { "name": "Update Developer", "type": "http" }, "http": { "method": "PATCH", "url": "{protocol}://{hostname}:{port}{path}/v3/portals/:portalId/developers/:developerId", "params": [ { "name": "portalId", "value": "", "type": "path", "description": "ID of the portal." }, { "name": "developerId", "value": "", "type": "path", "description": "ID of the developer." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the status of a particular developer. Approved developers have access to login to the portal. Revoked, rejected, or pending are not allowed to login. Even if a developer's status is no longer approved, they will still be able to using any existing credentials generated while they were approved, until each application registration is revoked or deleted." }, { "info": { "name": "Delete Developer", "type": "http" }, "http": { "method": "DELETE", "url": "{protocol}://{hostname}:{port}{path}/v3/portals/:portalId/developers/:developerId", "params": [ { "name": "portalId", "value": "", "type": "path", "description": "ID of the portal." }, { "name": "developerId", "value": "", "type": "path", "description": "ID of the developer." } ] }, "docs": "Deletes a developer, which will discontinue their ability to login, view any non-public resources, and delete all applications owned by them. All credentials issued to the developer will no longer provide access to any APIs. A deleted developer's unique email must be re-registered and approved to gain access again." } ] } ], "bundled": true }