Scale Computing Organization Users API

The OrganizationUsers API from Scale Computing — 1 operation(s) for organizationusers.

Operations 3

GET /api/v1/organizationUsers #
PUT /api/v1/organizationUsers #
DELETE /api/v1/organizationUsers #

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/scale-computing-organizationusers-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 email required.

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

OpenAPI Specification

scale-computing-organizationusers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: core Organization Users API
  version: 1.0.0
  license:
    name: ISC
  contact: {}
servers:
- url: /
tags:
- name: OrganizationUsers
paths:
  /api/v1/organizationUsers:
    get:
      operationId: GetOrganizationUsers
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/User'
                type: array
      security:
      - jwt:
        - organizationUser:read:*
      parameters: []
      tags:
      - OrganizationUsers
    put:
      operationId: UpdateOrganizationUser
      responses:
        '204':
          description: No content
      security:
      - jwt:
        - organizationUser:update:*
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                providerId:
                  type: string
                roleId:
                  type: string
                userId:
                  type: string
              required:
              - providerId
              - roleId
              - userId
              type: object
      tags:
      - OrganizationUsers
    delete:
      operationId: RemoveOrganizationUser
      responses:
        '204':
          description: No content
      security:
      - jwt:
        - organizationUser:delete:*
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              properties:
                userId:
                  type: string
              required:
              - userId
              type: object
      tags:
      - OrganizationUsers
components:
  schemas:
    User:
      properties:
        _id:
          type: string
        email:
          type: string
        displayName:
          type: string
        verifiedOn:
          type: string
          format: date-time
        picture:
          type: string
        scaleAdminRole:
          type: string
        eulaAccepted:
          type: number
          format: double
        resetPassword:
          properties:
            code:
              type: string
            link:
              type: string
          required:
          - code
          - link
          type: object
        inviteToken:
          type:
          - string
          - 'null'
        inviteIssued:
          type:
          - string
          - 'null'
          format: date-time
        providerId:
          type: string
      required:
      - _id
      - email
      - displayName
      - verifiedOn
      - picture
      - scaleAdminRole
      - eulaAccepted
      - resetPassword
      - inviteToken
      - inviteIssued
      - providerId
      type: object
      additionalProperties: true
  securitySchemes:
    tsoa_auth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: http://swagger.io/api/oauth/dialog
          scopes: {}