VAST Data localproviders API

Local Providers are providers configured on the cluster, to which you can add users for authorizing access to the cluster or tenants of the cluster.

Operations 5

GET /localproviders/ List Local Providers #
POST /localproviders/ Create Local Provider #
DELETE /localproviders/{id}/ Delete Local Provider #
GET /localproviders/{id}/ Return Details of a Local Provider #
PATCH /localproviders/{id}/ Modify a Local Provider #

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/vastdata-localproviders-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

vastdata-localproviders-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Localproviders API
  version: '1.0'
security:
- ApiToken: []
tags:
- description: Local Providers are providers configured on the cluster, to which you can add users for authorizing access to the cluster or tenants of the cluster.
  name: localproviders
paths:
  /localproviders/:
    get:
      description: This endpoint lists local providers.
      operationId: localproviders_list
      parameters:
      - $ref: '#/components/parameters/Page'
      - $ref: '#/components/parameters/PageSize'
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/LocalProvider'
                title: Local Provider
                type: array
          description: Local Providers information
      summary: List Local Providers
      tags:
      - localproviders
    post:
      description: This endpoint creates a local provider.
      operationId: localproviders_create
      requestBody:
        content:
          application/json:
            schema:
              properties:
                description:
                  description: Description of the local provider
                  type: string
                managed_by:
                  description: Manager user types that can manage the provider
                  items:
                    enum:
                    - TENANT_ADMIN
                    - SUPER_ADMIN
                    type: string
                  type: array
                name:
                  description: Name of the local provider
                  type: string
              required:
              - name
              type: object
        x-originalParamName: LocalProviderCreateParams
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocalProvider'
          description: ''
      summary: Create Local Provider
      tags:
      - localproviders
  /localproviders/{id}/:
    delete:
      description: This endpoint deletes a specified local provider.
      operationId: localproviders_delete
      parameters:
      - $ref: '#/components/parameters/LocalProviderId'
      responses:
        '204':
          description: ''
      summary: Delete Local Provider
      tags:
      - localproviders
    get:
      description: This endpoint returns properties of a specified local provider.
      operationId: localproviders_show
      parameters:
      - $ref: '#/components/parameters/LocalProviderId'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocalProvider'
          description: Local Provider information
      summary: Return Details of a Local Provider
      tags:
      - localproviders
    patch:
      description: This endpoint modifies a specified local provider.
      operationId: localproviders_modify
      parameters:
      - $ref: '#/components/parameters/LocalProviderId'
      requestBody:
        content:
          application/json:
            schema:
              properties:
                description:
                  description: Description of the local provider
                  type: string
                managed_by:
                  description: Manager user types that can manage the provider
                  items:
                    enum:
                    - TENANT_ADMIN
                    - SUPER_ADMIN
                    type: string
                  type: array
                name:
                  description: Name of the local provider
                  type: string
              type: object
        x-originalParamName: LocalProviderModifyParams
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LocalProvider'
          description: ''
      summary: Modify a Local Provider
      tags:
      - localproviders
components:
  parameters:
    PageSize:
      in: query
      name: page_size
      schema:
        minimum: 1
        type: integer
    LocalProviderId:
      description: Local Provider ID
      in: path
      name: id
      required: true
      schema:
        minimum: 1
        type: integer
    Page:
      in: query
      name: page
      schema:
        minimum: 1
        type: integer
  schemas:
    LocalProvider:
      description: Description of the local provider
      properties:
        assigned_tenants_preview:
          type: string
          x-cli-header: Assigned Tenants Preview
        description:
          description: Description of the local provider
          type: string
        id:
          type: integer
          x-cli-header: ID
        managed_by:
          description: Specifies which manager user types have permission to manage users and groups on the provider. SUPER_ADMIN refers to VMS manager users with user type 'cluster admin' who can log into the cluster VMS to manage the cluster. TENANT_ADMIN refers VMS manager users with 'tenant admin' type who can log into a specific tenant's VMS to manage that tenant. Either both or one or the other may be specified.
          items:
            enum:
            - TENANT_ADMIN
            - SUPER_ADMIN
            type: string
          type: array
          x-cli-header: Managed By
        name:
          description: Name of the local provider
          type: string
      required:
      - name
      type: object
  securitySchemes:
    ApiToken:
      description: Send current valid API token in an Authorization header with format Api-Token <token>.
      in: header
      name: ApiToken
      type: apiKey
    basicAuth:
      description: Basic authentication using VMS user name and password
      scheme: basic
      type: http