Gluu website screenshot

Gluu

Gluu is a technology company that specializes in providing identity and access management solutions for businesses. Their platform allows organizations to centrally manage the authentication and authorization of users across various applications and systems, ensuring secure access to sensitive data and resources.

4 APIs 0 Features
Access ManagementAuthenticationAuthorizationIAMIdentitiesOAuthOpenID Connect

APIs

Gluu Flex

Gluu Flex is the commercial, self-hosted enterprise distribution of the Linux Foundation Janssen Project. It provides a cloud-native digital identity platform with OAuth 2.0, Op...

Janssen Project

The Janssen Project is the upstream Linux Foundation open-source identity platform that powers Gluu Flex. It implements OAuth 2.0, OpenID Connect, FIDO 2.0, SCIM, UMA, and CIBA,...

Cedarling

Cedarling is an embeddable Policy Decision Point (PDP) built in Rust that runs anywhere and returns authorization decisions in under 50 microseconds based on declarative Cedar a...

Agama Lab

Agama Lab is a developer portal for authoring Cedar schema and policies, building authentication workflows using the Agama domain specific language, and managing hosted Gluu inf...

Collections

Pricing Plans

Gluu Plans Pricing

3 plans

PLANS

Rate Limits

Gluu Rate Limits

5 limits

RATE LIMITS

FinOps

Gluu Finops

FINOPS

Resources

🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
📰
Blog
Blog
💬
Support
Support
👥
GitHubOrganization
GitHubOrganization
💰
Pricing
Pricing
🔗
Contact
Contact
🔗
Community
Community

Sources

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: Gluu Flex SCIM 2.0 API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: users
    type: folder
  items:
  - info:
      name: Query users
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/Users
      params:
      - name: filter
        value: ''
        type: query
      - name: startIndex
        value: ''
        type: query
      - name: count
        value: ''
        type: query
      - name: sortBy
        value: ''
        type: query
      - name: sortOrder
        value: ''
        type: query
    docs: Query users
  - info:
      name: Create a user
      type: http
    http:
      method: POST
      url: https://{host}/jans-scim/restv1/v2/Users
      body:
        type: json
        data: '{}'
    docs: Create a user
  - info:
      name: Search users with a SearchRequest body
      type: http
    http:
      method: POST
      url: https://{host}/jans-scim/restv1/v2/Users/.search
    docs: Search users with a SearchRequest body
  - info:
      name: Get a user
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/Users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a user
  - info:
      name: Replace a user
      type: http
    http:
      method: PUT
      url: https://{host}/jans-scim/restv1/v2/Users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Replace a user
  - info:
      name: Patch a user (RFC 7644)
      type: http
    http:
      method: PATCH
      url: https://{host}/jans-scim/restv1/v2/Users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Patch a user (RFC 7644)
  - info:
      name: Delete a user
      type: http
    http:
      method: DELETE
      url: https://{host}/jans-scim/restv1/v2/Users/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a user
  - info:
      name: Bulk SCIM operations
      type: http
    http:
      method: POST
      url: https://{host}/jans-scim/restv1/v2/Bulk
    docs: Bulk SCIM operations
- info:
    name: groups
    type: folder
  items:
  - info:
      name: Query groups
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/Groups
      params:
      - name: filter
        value: ''
        type: query
      - name: startIndex
        value: ''
        type: query
      - name: count
        value: ''
        type: query
    docs: Query groups
  - info:
      name: Create a group
      type: http
    http:
      method: POST
      url: https://{host}/jans-scim/restv1/v2/Groups
      body:
        type: json
        data: '{}'
    docs: Create a group
  - info:
      name: Search groups with a SearchRequest body
      type: http
    http:
      method: POST
      url: https://{host}/jans-scim/restv1/v2/Groups/.search
    docs: Search groups with a SearchRequest body
  - info:
      name: Get a group
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/Groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a group
  - info:
      name: Replace a group
      type: http
    http:
      method: PUT
      url: https://{host}/jans-scim/restv1/v2/Groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Replace a group
  - info:
      name: Patch a group
      type: http
    http:
      method: PATCH
      url: https://{host}/jans-scim/restv1/v2/Groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Patch a group
  - info:
      name: Delete a group
      type: http
    http:
      method: DELETE
      url: https://{host}/jans-scim/restv1/v2/Groups/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a group
- info:
    name: fido
    type: folder
  items:
  - info:
      name: Query enrolled FIDO devices
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/FidoDevices
    docs: Query enrolled FIDO devices
  - info:
      name: Get a FIDO device
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/FidoDevices/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Get a FIDO device
  - info:
      name: Replace a FIDO device
      type: http
    http:
      method: PUT
      url: https://{host}/jans-scim/restv1/v2/FidoDevices/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Replace a FIDO device
  - info:
      name: Delete a FIDO device
      type: http
    http:
      method: DELETE
      url: https://{host}/jans-scim/restv1/v2/FidoDevices/:id
      params:
      - name: id
        value: ''
        type: path
    docs: Delete a FIDO device
- info:
    name: discovery
    type: folder
  items:
  - info:
      name: Get the SCIM Service Provider Configuration
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/ServiceProviderConfig
    docs: Get the SCIM Service Provider Configuration
  - info:
      name: List the SCIM resource types supported by this server
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/ResourceTypes
    docs: List the SCIM resource types supported by this server
  - info:
      name: List the SCIM schemas supported by this server
      type: http
    http:
      method: GET
      url: https://{host}/jans-scim/restv1/v2/Schemas
    docs: List the SCIM schemas supported by this server
bundled: true