1KOMMA5° Admin - Users API

The Admin - Users API from 1KOMMA5° — 6 operation(s) for admin - users.

Operations 8

GET /api/v1/admin/users Get paginated team users with filtering and sorting #
POST /api/v1/admin/users Create a new team user #
GET /api/v1/admin/users/me Get current admin user access level info #
GET /api/v1/admin/users/me/branches Get branches accessible to the current user #
GET /api/v1/admin/users/assignable-branches Get branches assignable to users for a given country #
GET /api/v1/admin/users/{id} Get a single team user by ID #
PATCH /api/v1/admin/users/{id} Update a team user #
POST /api/v1/admin/users/{id}/resend-invitation Resend invitation email to a user #

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/1komma5-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

1komma5-admin-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 1komma5 Admin - Users API
  version: '1.0'
  contact: {}
  description: 'Operations tagged Admin - Users across 2 of this provider''s published API definitions: 1komma5-admin-users-api-openapi.yml, 1komma5-offer-tool-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://heartbeat.1komma5grad.com
  description: Base URL reconciled from apis.yml
tags:
- name: Admin - Users
paths:
  /api/v1/admin/users:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      operationId: GetAdminUsersController_getAdminUsers_v1
      parameters:
      - name: page
        required: false
        in: query
        description: Page number (1-based)
        schema:
          minimum: 1
          default: 1
          type: number
      - name: limit
        required: false
        in: query
        description: Number of items per page
        schema:
          minimum: 1
          maximum: 100
          default: 20
          type: number
      - name: search
        required: false
        in: query
        description: Search by name or email
        schema:
          example: john
          type: string
      - name: tenantIds
        required: false
        in: query
        description: Filter by tenant IDs (comma-separated)
        schema:
          example: tenant-1,tenant-2
          type: array
          items:
            type: string
      - name: countryId
        required: false
        in: query
        description: Filter by country ID
        schema:
          example: 1
          type: number
      - name: sortBy
        required: false
        in: query
        description: Field to sort by
        schema:
          $ref: '#/components/schemas/AdminUserSortField'
      - name: sortOrder
        required: false
        in: query
        description: Sort order
        schema:
          $ref: '#/components/schemas/SortOrder'
      responses:
        '200':
          description: Paginated list of team users
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedAdminUsersResponseDto'
      summary: Get paginated team users with filtering and sorting
      tags:
      - Admin - Users
    post:
      operationId: CreateAdminUserController_createAdminUser_v1
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAdminUserDto'
      responses:
        '201':
          description: User created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdminUserDetailResponseDto'
        '409':
          description: Email already exists
      summary: Create a new team user
      tags:
      - Admin - Users
  /api/v1/admin/users/me:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      operationId: GetCurrentAdminUserController_getCurrentAdminUser_v1
      parameters: []
      responses:
        '200':
          description: Current admin user access level info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentAdminUserResponseDto'
      summary: Get current admin user access level info
      tags:
      - Admin - Users
  /api/v1/admin/users/me/branches:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      description: 'Returns branches based on access level: GLOBAL users get all branches, COUNTRY users get branches in their country, BRANCH users get their assigned branches.'
      operationId: GetMyBranchesController_getMyBranches_v1
      parameters: []
      responses:
        '200':
          description: List of accessible branches
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MyBranchesResponseDto'
      summary: Get branches accessible to the current user
      tags:
      - Admin - Users
  /api/v1/admin/users/assignable-branches:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      description: Returns branches that the current user can assign to other users. Used in user creation/edit forms for branch selection.
      operationId: GetAssignableBranchesController_getAssignableBranches_v1
      parameters:
      - name: countryId
        required: true
        in: query
        schema:
          type: number
      responses:
        '200':
          description: List of branches in the specified country
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AdminBranchDto'
      summary: Get branches assignable to users for a given country
      tags:
      - Admin - Users
  /api/v1/admin/users/{id}:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      operationId: GetAdminUserController_getAdminUser_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: User details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdminUserDetailResponseDto'
        '404':
          description: User not found
      summary: Get a single team user by ID
      tags:
      - Admin - Users
    patch:
      operationId: UpdateAdminUserController_updateAdminUser_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAdminUserDto'
      responses:
        '200':
          description: User updated successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdminUserDetailResponseDto'
        '404':
          description: User not found
        '409':
          description: Email already exists
      summary: Update a team user
      tags:
      - Admin - Users
  /api/v1/admin/users/{id}/resend-invitation:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    post:
      description: Sends a password setup email to the user. If the user does not exist in Auth0, they will be created first.
      operationId: ResendInvitationController_resendInvitation_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: number
      responses:
        '200':
          description: Invitation email sent successfully
        '400':
          description: Auth0 not configured or failed to send email
        '404':
          description: User not found
      summary: Resend invitation email to a user
      tags:
      - Admin - Users
components:
  schemas:
    SortOrder:
      type: string
      enum:
      - asc
      - desc
    AdminBranchDto:
      type: object
      properties:
        id:
          type: string
          description: Branch ID
          example: branch-123
        name:
          type: string
          description: Branch name
          example: Berlin Branch
        zohoId:
          type:
          - object
          - 'null'
          description: Zoho CRM ID
          example: '12345678'
        country:
          description: Country information
          allOf:
          - $ref: '#/components/schemas/AdminBranchCountryDto'
      required:
      - id
      - name
      - zohoId
      - country
    AdminUserSortField:
      type: string
      enum:
      - createdAt
      - name
      - email
      - lastLoginAt
    MyBranchesResponseDto:
      type: object
      properties:
        branches:
          description: List of branches accessible to the current user
          items:
            type: array
          type: array
      required:
      - branches
    AdminUserTenantDto:
      type: object
      properties:
        id:
          type: string
          description: Tenant ID
          example: tenant-1
        name:
          type: string
          description: Tenant name (branch name)
          example: Berlin Branch
      required:
      - id
      - name
    AdminBranchCountryDto:
      type: object
      properties:
        id:
          type: number
          description: Country ID
          example: 1
        name:
          type: string
          description: Country name
          example: Germany
        countryCode:
          type: string
          description: Country code (ISO 3166-1 alpha-2)
          example: DE
      required:
      - id
      - name
      - countryCode
    PaginatedAdminUsersResponseDto:
      type: object
      properties:
        data:
          description: Array of user entries
          type: array
          items:
            $ref: '#/components/schemas/AdminUserResponseDto'
        meta:
          description: Pagination metadata
          allOf:
          - $ref: '#/components/schemas/PaginationMetaDto'
      required:
      - data
      - meta
    AdminUserDetailResponseDto:
      type: object
      properties:
        id:
          type: number
          description: Unique identifier of the user
          example: 123
        email:
          type: string
          description: User email address
          example: john.doe@example.com
        name:
          type: string
          description: User full name
          example: John Doe
        accessLevel:
          description: Access level determining the scope of data the user can access
          example: branch
          allOf:
          - $ref: '#/components/schemas/AccessLevel'
        countryId:
          type:
          - object
          - 'null'
          description: Country ID
          example: 1
        zohoUserId:
          type:
          - object
          - 'null'
          description: Zoho User ID
          example: '12345678901234567'
        defaultTenantId:
          type:
          - object
          - 'null'
          description: Default tenant/branch ID
          example: tenant-1
        createdAt:
          type: string
          description: Timestamp when the user was created
          example: '2024-01-15T10:30:00.000Z'
        tenants:
          description: Tenants (branches) the user belongs to
          type: array
          items:
            $ref: '#/components/schemas/AdminUserTenantDto'
        hiddenBranchCount:
          type: number
          description: Number of branches the user has access to that the current user cannot see or modify
          example: 0
        roles:
          description: Role names assigned to the user
          example:
          - sales
          - branch lead
          type: array
          items:
            type: array
      required:
      - id
      - email
      - name
      - accessLevel
      - countryId
      - zohoUserId
      - defaultTenantId
      - createdAt
      - tenants
      - hiddenBranchCount
      - roles
    PaginationMetaDto:
      type: object
      properties:
        total:
          type: number
          description: Total number of items
          example: 100
        page:
          type: number
          description: Current page number
          example: 1
        limit:
          type: number
          description: Number of items per page
          example: 20
        totalPages:
          type: number
          description: Total number of pages
          example: 5
      required:
      - total
      - page
      - limit
      - totalPages
    AccessLevel:
      type: string
      enum:
      - global
      - country
      - branch
    CurrentAdminUserResponseDto:
      type: object
      properties:
        id:
          type: number
          description: User ID
          example: 123
        accessLevel:
          description: Access level determining the scope of data the user can access
          example: branch
          allOf:
          - $ref: '#/components/schemas/AccessLevel'
        countryId:
          type:
          - object
          - 'null'
          description: Country ID (null for GLOBAL users)
          example: 1
        countryName:
          type:
          - object
          - 'null'
          description: Country name (null for GLOBAL users)
          example: Germany
        tenants:
          description: List of tenants the user has access to (for BRANCH level users)
          items:
            type: array
          type: array
      required:
      - id
      - accessLevel
      - countryId
      - countryName
      - tenants
    CreateAdminUserDto:
      type: object
      properties:
        email:
          type: string
          description: User email address
          example: john.doe@example.com
        name:
          type: string
          description: User full name
          example: John Doe
        accessLevel:
          description: Access level determining the scope of data the user can access
          example: branch
          allOf:
          - $ref: '#/components/schemas/AccessLevel'
        countryId:
          type:
          - object
          - 'null'
          description: Country ID. Required for COUNTRY and BRANCH access levels.
          example: 1
        zohoUserId:
          type: string
          description: Zoho User ID
          example: '12345678901234567'
        tenantIds:
          description: List of tenant/branch IDs to assign to the user
          example:
          - tenant-1
          - tenant-2
          type: array
          items:
            type: array
        defaultTenantId:
          type:
          - object
          - 'null'
          description: Default tenant/branch ID. Central users can leave this null.
          example: tenant-1
        roles:
          description: Role names to assign to the user
          example:
          - sales
          - branch lead
          type: array
          items:
            type: array
      required:
      - email
      - name
      - accessLevel
    UpdateAdminUserDto:
      type: object
      properties:
        email:
          type: string
          description: User email address
          example: john.doe@example.com
        name:
          type: string
          description: User full name
          example: John Doe
        accessLevel:
          type: string
          description: Access level determining the scope of data the user can access
          example: branch
          enum:
          - global
          - country
          - branch
        countryId:
          type:
          - object
          - 'null'
          description: Country ID. Required for COUNTRY and BRANCH access levels.
          example: 1
        zohoUserId:
          type:
          - object
          - 'null'
          description: Zoho User ID (can be null to clear)
          example: '12345678901234567'
        tenantIds:
          description: List of tenant/branch IDs to assign to the user
          example:
          - tenant-1
          - tenant-2
          type: array
          items:
            type: array
        defaultTenantId:
          type:
          - object
          - 'null'
          description: Default tenant/branch ID (can be null for central users to clear)
          example: tenant-1
        roles:
          description: Role names to assign to the user (replaces existing roles)
          example:
          - sales
          - branch lead
          type: array
          items:
            type: array
    AdminUserResponseDto:
      type: object
      properties:
        id:
          type: number
          description: Unique identifier of the user
          example: 123
        email:
          type: string
          description: User email address
          example: john.doe@example.com
        name:
          type: string
          description: User full name
          example: John Doe
        accessLevel:
          description: Access level determining the scope of data the user can access
          example: branch
          allOf:
          - $ref: '#/components/schemas/AccessLevel'
        createdAt:
          type: string
          description: Timestamp when the user was created
          example: '2024-01-15T10:30:00.000Z'
        lastLoginAt:
          type:
          - object
          - 'null'
          description: Timestamp of last login
          example: '2024-06-20T14:45:00.000Z'
        tenants:
          description: Tenants (branches) the user belongs to
          type: array
          items:
            $ref: '#/components/schemas/AdminUserTenantDto'
      required:
      - id
      - email
      - name
      - accessLevel
      - createdAt
      - lastLoginAt
      - tenants
x-refined-from:
- 1komma5-admin-users-api-openapi.yml
- 1komma5-offer-tool-openapi-original.json