Infinidat Users API
The users API from Infinidat — 2 operation(s) for users.
The users API from Infinidat — 2 operation(s) for users.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/infinidat-users-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Infinidat InfiniBox REST API (7.3) Users API
version: '7.3'
summary: Management REST API served by every InfiniBox / InfiniBox SSA array.
description: 'Derived faithfully from Infinidat''s own published Postman collection for the InfiniBox 7.3 API (https://github.com/Infinidat/api_7_3). The InfiniBox REST API is served by each array on-premises at https://<infinibox-host>/api/rest, so there is no single public base URL; the server below is a template. Operations, paths, parameters, request bodies and example responses are carried over verbatim from the collection - nothing has been invented. This is a partial surface: the collection carries 47 requests (46 against the array, one external Okta SSO redirect), which normalize to 40 operations across 38 paths. The full InfiniAPI surface documented on support.infinidat.com is larger.'
contact:
name: INFINIDAT Support
url: https://support.infinidat.com/hc/en-us
x-derived-from: postman/infinidat-infinibox-7-3-postman.json
x-derivation-method: derived
servers:
- url: https://{infinibox_host}/api/rest
description: The management API of a single InfiniBox array (the collection's {{sutURI}} variable).
variables:
infinibox_host:
default: infinibox.example.com
description: Hostname or management IP of the InfiniBox system.
security:
- basicAuth: []
- sessionCookie: []
tags:
- name: users
paths:
/users/login:
post:
operationId: login
summary: Login
tags:
- users
requestBody:
required: true
content:
application/json:
schema:
type: object
example:
username: '{{username}}'
password: '{{password}}'
responses:
'200':
description: Successful response.
content:
application/json:
schema:
$ref: '#/components/schemas/InfiniBoxEnvelope'
'401':
description: Unauthenticated. The session is missing, expired or invalid.
content:
application/json:
schema:
$ref: '#/components/schemas/InfiniBoxError'
/users/logout:
post:
operationId: logout
summary: Logout
tags:
- users
responses:
'200':
description: Successful response.
content:
application/json:
schema:
$ref: '#/components/schemas/InfiniBoxEnvelope'
'401':
description: Unauthenticated. The session is missing, expired or invalid.
content:
application/json:
schema:
$ref: '#/components/schemas/InfiniBoxError'
components:
schemas:
InfiniBoxMetadata:
type: object
description: Pagination / readiness metadata returned alongside every result.
properties:
ready:
type: boolean
number_of_objects:
type: integer
page:
type: integer
page_size:
type: integer
pages_total:
type: integer
InfiniBoxError:
type: object
description: Error object carried on the envelope's error field.
properties:
code:
type: string
message:
type: string
severity:
type: string
reasons:
type: array
items:
type: string
InfiniBoxEnvelope:
type: object
description: Standard InfiniBox response envelope observed in the collection's saved examples.
properties:
result:
description: The requested object or array of objects.
metadata:
$ref: '#/components/schemas/InfiniBoxMetadata'
error:
oneOf:
- type: 'null'
- $ref: '#/components/schemas/InfiniBoxError'
securitySchemes:
basicAuth:
type: http
scheme: basic
description: HTTP Basic authentication with an InfiniBox user, as used by InfiniSDK.
sessionCookie:
type: apiKey
in: cookie
name: sessionid
description: Session established by POST /users/login and torn down by POST /users/logout.