Gluu groups API

The groups API from Gluu — 3 operation(s) for groups.

Operations 7

GET /v2/Groups Query groups #
POST /v2/Groups Create a group #
POST /v2/Groups/.search Search groups with a SearchRequest body #
GET /v2/Groups/{id} Get a group #
PUT /v2/Groups/{id} Replace a group #
PATCH /v2/Groups/{id} Patch a group #
DELETE /v2/Groups/{id} Delete a group #

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-groups-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-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Gluu Flex SCIM 2.0 discovery Groups 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: groups
paths:
  /v2/Groups:
    get:
      tags:
      - groups
      summary: Query groups
      operationId: searchGroups
      parameters:
      - name: filter
        in: query
        schema:
          type: string
      - name: startIndex
        in: query
        schema:
          type: integer
      - name: count
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: ListResponse
    post:
      tags:
      - groups
      summary: Create a group
      operationId: createGroup
      requestBody:
        required: true
        content:
          application/scim+json:
            schema:
              type: object
      responses:
        '201':
          description: Group created
  /v2/Groups/.search:
    post:
      tags:
      - groups
      summary: Search groups with a SearchRequest body
      operationId: searchGroupsPost
      responses:
        '200':
          description: ListResponse
  /v2/Groups/{id}:
    get:
      tags:
      - groups
      summary: Get a group
      operationId: getGroup
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Group
    put:
      tags:
      - groups
      summary: Replace a group
      operationId: replaceGroup
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Group
    patch:
      tags:
      - groups
      summary: Patch a group
      operationId: patchGroup
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Group
    delete:
      tags:
      - groups
      summary: Delete a group
      operationId: deleteGroup
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 access token with SCIM scopes