Keboola Admin Users API

The Admin Users API from Keboola — 5 operation(s) for admin users.

Operations 7

GET /admin/users List users
DELETE /admin/users/{username} Delete user
DELETE /admin/users/{username}/mfa Disable user MFA
POST /admin/users/{username}/vendors/{vendor} Add user to a vendor
DELETE /admin/users/{username}/vendors/{vendor} Remove user from a vendor
POST /admin/users/{username}/admin Make user admin
DELETE /admin/users/{username}/admin Remove admin privilege

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/keboola-admin-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

keboola-admin-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Keboola Developer Portal Admin Users API
  description: 'API for the Keboola Developer Portal — vendor, app (component) and user management for Keboola Connection. Most calls authenticate with a JWT token returned by `POST /auth/login`, passed verbatim in the `Authorization` header (valid for 1 hour; refresh with `GET /auth/token`).

    '
  version: 1.0.0
servers:
- url: https://apps-api.keboola.com
  description: Production
security:
- bearerAuth: []
tags:
- name: Admin Users
paths:
  /admin/users:
    get:
      tags:
      - Admin Users
      summary: List users
      description: List all user accounts. Requires an admin token.
      parameters:
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          default: 0
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 1000
      responses:
        '200':
          description: List of users
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/User'
  /admin/users/{username}:
    delete:
      tags:
      - Admin Users
      summary: Delete user
      description: Delete a user account. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: User deleted
  /admin/users/{username}/mfa:
    delete:
      tags:
      - Admin Users
      summary: Disable user MFA
      description: Disable MFA for a user account. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: MFA disabled
  /admin/users/{username}/vendors/{vendor}:
    post:
      tags:
      - Admin Users
      summary: Add user to a vendor
      description: Add a user to a vendor. Sends email confirmation to the user. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: User added to vendor
    delete:
      tags:
      - Admin Users
      summary: Remove user from a vendor
      description: Remove a user from a vendor. Sends email confirmation to the user. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      - name: vendor
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: User removed from vendor
  /admin/users/{username}/admin:
    post:
      tags:
      - Admin Users
      summary: Make user admin
      description: Grant admin privileges to a user. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Admin privilege granted
    delete:
      tags:
      - Admin Users
      summary: Remove admin privilege
      description: Revoke admin privileges from a user. Requires an admin token.
      parameters:
      - name: username
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Admin privilege revoked
components:
  schemas:
    User:
      type: object
      additionalProperties: true
      properties:
        name:
          type: string
        email:
          type: string
          format: email
        vendors:
          type: array
          items:
            type: string
        isAdmin:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'JWT token from `POST /auth/login`, passed verbatim (no "Bearer " prefix). Admin endpoints require a token belonging to an administrator.

        '