Gluu users API

The users API from Gluu — 4 operation(s) for users.

Operations 8

GET /v2/Users Query users #
POST /v2/Users Create a user #
POST /v2/Users/.search Search users with a SearchRequest body #
GET /v2/Users/{id} Get a user #
PUT /v2/Users/{id} Replace a user #
PATCH /v2/Users/{id} Patch a user (RFC 7644) #
DELETE /v2/Users/{id} Delete a user #
POST /v2/Bulk Bulk SCIM operations #

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

gluu-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gluu Flex SCIM 2.0 discovery Users API
  version: '1.0'
  description: 'SCIM 2.0 (RFC 7644) endpoints exposed by Gluu Flex / Janssen Server for

    cross-domain identity management. The default base path on a Gluu Flex

    deployment is `/jans-scim/restv1`. Authentication uses an OAuth 2.0

    Bearer access token obtained from the embedded authorization server

    with the appropriate SCIM scopes.

    '
  contact:
    name: Gluu
    url: https://docs.gluu.org/
servers:
- url: https://{host}/jans-scim/restv1
  description: Gluu Flex SCIM endpoint
  variables:
    host:
      default: idp.example.com
security:
- bearerAuth: []
tags:
- name: users
paths:
  /v2/Users:
    get:
      tags:
      - users
      summary: Query users
      operationId: searchUsers
      parameters:
      - name: filter
        in: query
        schema:
          type: string
      - name: startIndex
        in: query
        schema:
          type: integer
      - name: count
        in: query
        schema:
          type: integer
      - name: sortBy
        in: query
        schema:
          type: string
      - name: sortOrder
        in: query
        schema:
          type: string
          enum:
          - ascending
          - descending
      responses:
        '200':
          description: ListResponse
    post:
      tags:
      - users
      summary: Create a user
      operationId: createUser
      requestBody:
        required: true
        content:
          application/scim+json:
            schema:
              type: object
      responses:
        '201':
          description: User created
  /v2/Users/.search:
    post:
      tags:
      - users
      summary: Search users with a SearchRequest body
      operationId: searchUsersPost
      responses:
        '200':
          description: ListResponse
  /v2/Users/{id}:
    get:
      tags:
      - users
      summary: Get a user
      operationId: getUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: User
    put:
      tags:
      - users
      summary: Replace a user
      operationId: replaceUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: User
    patch:
      tags:
      - users
      summary: Patch a user (RFC 7644)
      operationId: patchUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: User
    delete:
      tags:
      - users
      summary: Delete a user
      operationId: deleteUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
  /v2/Bulk:
    post:
      tags:
      - users
      summary: Bulk SCIM operations
      operationId: bulkOperations
      responses:
        '200':
          description: BulkResponse
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 access token with SCIM scopes