Brellium Users API

The Users API from Brellium — 2 operation(s) for users.

Operations 5

POST /users Create a new user
GET /users Get all users for organization
GET /users/{user_id} Get a specific user
POST /users/{user_id} Update a user
DELETE /users/{user_id} Delete 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/brellium-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

brellium-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Brellium Audits Users API
  description: API for base Brellium functionality.
  termsOfService: https://brellium.com/terms
  contact:
    name: Brellium Team
    email: support@brellium.com
    url: http://brellium.com
servers:
- url: https://api.brellium.com/v1
tags:
- name: Users
paths:
  /users:
    post:
      summary: Create a new user
      requestBody:
        description: User information.
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  description: User's email address.
                name:
                  type: string
                  description: User's name.
                metadata:
                  type: object
                  description: Additional metadata for the user.
                attributes:
                  type: object
                  description: User attributes.
              required:
              - email
      responses:
        '200':
          description: User created successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
        '400':
          description: Invalid request.
        '401':
          description: Unauthorized.
        '500':
          description: Server error.
      security:
      - bearerAuth: []
      tags:
      - Users
    get:
      summary: Get all users for organization
      responses:
        '200':
          description: List of users.
          content:
            application/json:
              schema:
                type: object
                properties:
                  users:
                    type: array
                    items:
                      type: object
                      properties:
                        user_id:
                          type: string
                          description: User id.
                        org_id:
                          type: string
                        name:
                          type: string
                        email:
                          type: string
                          description: User's email address.
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
                        metadata:
                          type: object
                        attributes:
                          type: object
        '401':
          description: Unauthorized.
      security:
      - bearerAuth: []
      tags:
      - Users
  /users/{user_id}:
    get:
      summary: Get a specific user
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      responses:
        '200':
          description: User information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  user:
                    type: object
                    properties:
                      user_id:
                        type: string
                        description: User id.
                      org_id:
                        type: string
                      name:
                        type: string
                      email:
                        type: string
                        description: User's email address.
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                      metadata:
                        type: object
                      attributes:
                        type: object
        '401':
          description: Unauthorized.
        '404':
          description: User not found.
      security:
      - bearerAuth: []
      tags:
      - Users
    post:
      summary: Update a user
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      requestBody:
        description: Updated user information.
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                email:
                  type: string
                  description: User's email address.
                metadata:
                  type: object
                attributes:
                  type: object
      responses:
        '200':
          description: Updated user information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  user:
                    type: object
                    properties:
                      user_id:
                        type: string
                        description: User id.
                      org_id:
                        type: string
                      name:
                        type: string
                      email:
                        type: string
                        description: User's email address.
                      created_at:
                        type: string
                        format: date-time
                      updated_at:
                        type: string
                        format: date-time
                      metadata:
                        type: object
                      attributes:
                        type: object
        '400':
          description: Invalid request.
        '401':
          description: Unauthorized.
        '404':
          description: User not found.
      security:
      - bearerAuth: []
      tags:
      - Users
    delete:
      summary: Delete a user
      parameters:
      - name: user_id
        in: path
        required: true
        schema:
          type: string
          description: User id.
      responses:
        '200':
          description: User deleted successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
        '400':
          description: Delete failed.
        '401':
          description: Unauthorized.
        '404':
          description: User not found.
        '500':
          description: Server error.
      security:
      - bearerAuth: []
      tags:
      - Users
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT