Class (fka ClassEDU) Users API
Manage non-learner users (instructors, admins).
Manage non-learner users (instructors, admins).
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/class-fka-classedu-users-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Class Developer Classes Users API
version: v1
x-apievangelist-provenance:
generated: '2026-07-18'
method: generated
source: https://developer.class.com/
note: Faithful OpenAPI reconstruction of the operations, paths, HTTP methods, authentication scheme, permission scopes, pagination model and documented request fields published on developer.class.com. Request/response object schemas capture only fields named in the public documentation; no fields were invented. This is an API Evangelist generated spec, not a Class-published artifact.
description: REST API for Class (fka ClassEDU), the virtual classroom platform built for Zoom and Microsoft Teams. The API lets administrators and integrators provision classes, manage enrollments, generate learner launch links, schedule class dates, manage reusable class templates, manage non-learner users, and pull attendance and engagement reporting. Authentication uses a per-organization API key presented as a Bearer token, gated by permission scopes.
contact:
name: Class Developer Platform
url: https://developer.class.com/
termsOfService: https://www.class.com/terms-of-service/
servers:
- url: https://{organization}.class.com
description: Base URL is unique to each organization and is retrieved from the API Keys page in the Class Admin UI after an API key is created.
variables:
organization:
default: your-organization
description: Your organization's Class subdomain.
security:
- bearerAuth: []
tags:
- name: Users
description: Manage non-learner users (instructors, admins).
paths:
/api/v1/users:
put:
operationId: upsertUser
summary: Create or Update a User
tags:
- Users
security:
- bearerAuth:
- user:write
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/UserUpsert'
responses:
'200':
$ref: '#/components/responses/UserResponse'
'201':
$ref: '#/components/responses/UserResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
get:
operationId: getUsers
summary: Get users
description: Get all users, or a single user by id or ext_user_id.
tags:
- Users
security:
- bearerAuth:
- user:read
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/ExtUserId'
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/Limit'
responses:
'200':
$ref: '#/components/responses/UserListResponse'
'400':
$ref: '#/components/responses/BadRequest'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
delete:
operationId: deleteUser
summary: Remove a User
tags:
- Users
security:
- bearerAuth:
- user:write
parameters:
- $ref: '#/components/parameters/UserId'
- $ref: '#/components/parameters/ExtUserId'
responses:
'200':
$ref: '#/components/responses/Deleted'
'401':
$ref: '#/components/responses/Unauthorized'
'403':
$ref: '#/components/responses/Forbidden'
'404':
$ref: '#/components/responses/NotFound'
components:
schemas:
User:
type: object
properties:
id:
type: string
ext_user_id:
type: string
email:
type: string
format: email
user_name:
type: string
roles:
type: array
items:
type: string
Error:
type: object
properties:
message:
type: string
description: Human-readable explanation of the failure.
Pagination:
type: object
properties:
total_records:
type: integer
current_page:
type: integer
total_pages:
type: integer
next_page:
type:
- integer
- 'null'
prev_page:
type:
- integer
- 'null'
UserUpsert:
type: object
properties:
identified_by:
type: string
description: Which identifier the request keys on (id or ext_user_id).
id:
type: string
ext_user_id:
type: string
email:
type: string
format: email
user_name:
type: string
roles:
type: array
items:
type: string
parameters:
ExtUserId:
name: ext_user_id
in: query
description: External user identifier supplied by the integrator.
required: false
schema:
type: string
UserId:
name: id
in: query
description: User identifier assigned by Class.
required: false
schema:
type: string
Limit:
name: limit
in: query
description: Records per page (1-1000).
required: false
schema:
type: integer
minimum: 1
maximum: 1000
default: 100
Page:
name: page
in: query
description: Page number to retrieve (positive integer).
required: false
schema:
type: integer
minimum: 1
default: 1
responses:
UserResponse:
description: A user.
content:
application/json:
schema:
$ref: '#/components/schemas/User'
BadRequest:
description: Bad Request - validation failed.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Deleted:
description: The resource was removed.
NotFound:
description: Not Found.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
UserListResponse:
description: A page of users.
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/User'
pagination:
$ref: '#/components/schemas/Pagination'
Unauthorized:
description: Unauthorized - missing or invalid API key.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
Forbidden:
description: Forbidden - the API key lacks the required scope.
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: 'Per-organization API key presented as a Bearer token in the Authorization header (Authorization: Bearer <api_key_secret>). The key secret is shown only once, at key creation, in the Admin UI. Each key is granted a set of permission scopes; selecting a write scope automatically grants the matching read scope. Documented scopes: class:read, class:write, enrollment:read, enrollment:write, attendance:read, metrics:read, schedule:read, schedule:write, template:read, template:write, user:read, user:write.'