Pluralsight Users API

Flow user management operations

Operations 2

GET /users Pluralsight List Users #
PUT /users Pluralsight Update Users #

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/pluralsight-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

pluralsight-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pluralsight Flow Users API
  description: REST API for managing Flow users including listing, updating, merging, hiding, and bulk operations on user accounts.
  version: 1.0.0
  contact:
    name: Pluralsight API Support
    email: support@pluralsight.com
    url: https://help.pluralsight.com
  license:
    name: Proprietary
    url: https://www.pluralsight.com/terms
servers:
- url: https://{workspace}.appfireflow.com/v3/customer/core
  description: Production
  variables:
    workspace:
      description: Your Flow workspace identifier
      default: your-workspace
tags:
- name: Users
  description: Flow user management operations
paths:
  /users:
    get:
      summary: Pluralsight List Users
      description: Retrieve a list of Flow users in the workspace.
      operationId: listUsers
      tags:
      - Users
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful response with user data
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                    description: User records
        '401':
          description: Unauthorized - Invalid or missing authentication token
        '429':
          description: Too Many Requests - Rate limit exceeded
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      summary: Pluralsight Update Users
      description: Update, merge, hide, or perform bulk operations on Flow user accounts.
      operationId: updateUsers
      tags:
      - Users
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              description: User update payload
      responses:
        '200':
          description: Successful update response
          content:
            application/json:
              schema:
                type: object
        '401':
          description: Unauthorized - Invalid or missing authentication token
        '429':
          description: Too Many Requests - Rate limit exceeded
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
externalDocs:
  description: Customer API References
  url: https://help.pluralsight.com/hc/en-us/sections/24176771997588-Customer-API-references