Hewlett Packard Enterprise Identity API

The Identity API from Hewlett Packard Enterprise — 2 operation(s) for identity.

Operations 5

GET /identity/v1/users List users in the workspace #
POST /identity/v1/users Invite a user to the workspace #
GET /identity/v1/users/{id} Get a specific user #
PUT /identity/v1/users/{id} Update user preferences #
DELETE /identity/v1/users/{id} Delete a user from the workspace #

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/hpe-identity-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

hpe-identity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HPE GreenLake Authorization Identity API
  description: 'Unified REST API gateway for HPE GreenLake edge-to-cloud services

    documented at developer.greenlake.hpe.com. Covers identity (user

    management), API client credentials, workspaces, and authorization

    (scope groups and role assignments). Conforms to OpenAPI 3.0 and

    authenticates with OAuth 2.0 client credentials that issue

    short-lived JWT bearer tokens.

    '
  version: '1.0'
  contact:
    name: HPE GreenLake Developer
    url: https://developer.greenlake.hpe.com/docs/greenlake/guides
servers:
- url: https://global.api.greenlake.hpe.com
  description: HPE GreenLake unified API gateway
security:
- BearerAuth: []
tags:
- name: Identity
paths:
  /identity/v1/users:
    get:
      summary: List users in the workspace
      operationId: listUsers
      responses:
        '200':
          description: OK
      tags:
      - Identity
    post:
      summary: Invite a user to the workspace
      operationId: inviteUser
      responses:
        '201':
          description: Created
      tags:
      - Identity
  /identity/v1/users/{id}:
    parameters:
    - name: id
      in: path
      required: true
      schema:
        type: string
    get:
      summary: Get a specific user
      operationId: getUser
      responses:
        '200':
          description: OK
      tags:
      - Identity
    put:
      summary: Update user preferences
      operationId: updateUser
      responses:
        '200':
          description: OK
      tags:
      - Identity
    delete:
      summary: Delete a user from the workspace
      operationId: deleteUser
      responses:
        '204':
          description: Deleted
      tags:
      - Identity
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'OAuth 2.0 client-credentials access token. Use the token as

        `Authorization: Bearer <token>` on every request.

        '