VAST Data managedapplications API

Managed applications is a feature that enables you to run 3D applications on CNodes by distributing an image across a group of CNodes.

Operations 5

GET /managedapplications/ Get all existing Managed Applications #
POST /managedapplications/ Create a Managed Application #
DELETE /managedapplications/{id}/ Delete Managed Application #
GET /managedapplications/{id}/ Return Details of a Managed Application #
PATCH /managedapplications/{id}/ Modify Managed Application #

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-managedapplications-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-managedapplications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: VAST Management API definition
  title: VAST API Swagger Schema activedirectory Managedapplications API
  version: '1.0'
security:
- ApiToken: []
tags:
- description: Managed applications is a feature that enables you to run 3D applications on CNodes by distributing an image across a group of CNodes.
  name: managedapplications
paths:
  /managedapplications/:
    get:
      description: This endpoint lists Managed Applications
      operationId: managedapplications_list
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ManagedApplication'
                title: Managed Application
                type: array
          description: Managed Application information
      summary: Get all existing Managed Applications
      tags:
      - managedapplications
    post:
      description: This endpoint creates a Managed Application.
      operationId: managedapplications_create
      requestBody:
        content:
          application/json:
            schema:
              properties:
                cnode_group_id:
                  description: CNode Group where Managed Application should work on
                  type: integer
                configuration:
                  description: Managed Application user configuration
                  type: object
                metadata:
                  description: Managed Application metadata
                  type: object
                name:
                  description: The name of the application.
                  type: string
              type: object
        x-originalParamName: ManagedApplicationCreateParams
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncManagedApplication'
          description: ''
      summary: Create a Managed Application
      tags:
      - managedapplications
      x-cli-command: managedapplication
      x-cli-subcommand: create
  /managedapplications/{id}/:
    delete:
      description: Delete Managed Application.
      operationId: managedapplications_delete
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '204':
          description: ''
      summary: Delete Managed Application
      tags:
      - managedapplications
    get:
      description: This endpoint returns information about a specific Managed Application.
      operationId: managedapplications_read
      parameters:
      - in: path
        name: id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ManagedApplication'
          description: ''
      summary: Return Details of a Managed Application
      tags:
      - managedapplications
    patch:
      operationId: managedapplications_update
      parameters:
      - description: Managed Application ID
        in: path
        name: id
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                cnode_group_id:
                  description: CNode Group where Managed Application should work on
                  type: integer
                configuration:
                  description: Managed Application user configuration
                  type: object
                metadata:
                  description: Managed Application metadata
                  type: object
                name:
                  description: Managed Application name
                  type: string
              type: object
        x-originalParamName: ManagedApplicationModifyParams
      responses:
        '204':
          description: OK
      summary: Modify Managed Application
      tags:
      - managedapplications
components:
  schemas:
    ManagedApplication:
      properties:
        cnode_group_id:
          description: Managed Application CNode Group
          type: integer
        configuration:
          description: Managed Application user configuration
          type: object
        guid:
          type: string
        id:
          type: integer
          x-cli-header: ID
        metadata:
          description: Managed Application metadata
          type: object
        name:
          description: Managed Application name
          type: string
        state:
          description: Managed Application state
          type: string
      type: object
    AsyncManagedApplication:
      allOf:
      - $ref: '#/components/schemas/ManagedApplication'
      - $ref: '#/components/schemas/AsyncTaskInResponse'
    AsyncTaskInResponse:
      properties:
        async_task:
          description: Creation Async task properties
          type: object
      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