Veritas InfoScale Service Groups API

Manage VCS service groups and their lifecycle

Operations 7

GET /clusters/{clusterId}/servicegroups Veritas InfoScale List Service Groups #
POST /clusters/{clusterId}/servicegroups Veritas InfoScale Create Service Group #
GET /clusters/{clusterId}/servicegroups/{serviceGroupName} Veritas InfoScale Get Service Group #
DELETE /clusters/{clusterId}/servicegroups/{serviceGroupName} Veritas InfoScale Delete Service Group #
POST /clusters/{clusterId}/servicegroups/{serviceGroupName}/online Veritas InfoScale Online Service Group #
POST /clusters/{clusterId}/servicegroups/{serviceGroupName}/offline Veritas InfoScale Offline Service Group #
POST /clusters/{clusterId}/servicegroups/{serviceGroupName}/switch Veritas InfoScale Switch Service Group #

Documentation

Specifications

Schemas & Data

Other Resources

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/veritas-infoscale-service-groups-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

veritas-infoscale-service-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Veritas InfoScale REST Alerts Service Groups API
  description: REST API for managing InfoScale clusters, storage resources, service groups, and high availability configurations. Provides operations for cluster monitoring, storage volume management, service group administration, fencing configuration, and disaster recovery operations.
  version: '8.0'
  contact:
    name: Veritas Support
    email: support@veritas.com
    url: https://www.veritas.com/support
  license:
    name: Veritas API License
    url: https://www.veritas.com/about/legal
  x-generated-from: documentation
  x-last-validated: '2026-04-18'
servers:
- url: https://{infoscale-server}:14149/api/v1
  description: InfoScale REST API endpoint
  variables:
    infoscale-server:
      default: localhost
      description: InfoScale server hostname or IP
security:
- bearerAuth: []
tags:
- name: Service Groups
  description: Manage VCS service groups and their lifecycle
paths:
  /clusters/{clusterId}/servicegroups:
    get:
      operationId: listServiceGroups
      summary: Veritas InfoScale List Service Groups
      description: Retrieve all service groups in a cluster.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      responses:
        '200':
          description: List of service groups
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceGroupCollection'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    post:
      operationId: createServiceGroup
      summary: Veritas InfoScale Create Service Group
      description: Create a new service group in a cluster.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceGroupCreate'
      responses:
        '201':
          description: Service group created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceGroup'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /clusters/{clusterId}/servicegroups/{serviceGroupName}:
    get:
      operationId: getServiceGroup
      summary: Veritas InfoScale Get Service Group
      description: Retrieve details of a specific service group.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      - $ref: '#/components/parameters/serviceGroupName'
      responses:
        '200':
          description: Service group details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceGroup'
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    delete:
      operationId: deleteServiceGroup
      summary: Veritas InfoScale Delete Service Group
      description: Delete a service group from the cluster.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      - $ref: '#/components/parameters/serviceGroupName'
      responses:
        '204':
          description: Service group deleted
        '404':
          $ref: '#/components/responses/NotFound'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /clusters/{clusterId}/servicegroups/{serviceGroupName}/online:
    post:
      operationId: onlineServiceGroup
      summary: Veritas InfoScale Online Service Group
      description: Bring a service group online on a specified system.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      - $ref: '#/components/parameters/serviceGroupName'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceGroupAction'
      responses:
        '200':
          description: Service group brought online
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobReference'
        '409':
          description: Service group already online or in transition
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /clusters/{clusterId}/servicegroups/{serviceGroupName}/offline:
    post:
      operationId: offlineServiceGroup
      summary: Veritas InfoScale Offline Service Group
      description: Take a service group offline on a specified system.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      - $ref: '#/components/parameters/serviceGroupName'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceGroupAction'
      responses:
        '200':
          description: Service group taken offline
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobReference'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /clusters/{clusterId}/servicegroups/{serviceGroupName}/switch:
    post:
      operationId: switchServiceGroup
      summary: Veritas InfoScale Switch Service Group
      description: Switch a service group from one system to another.
      tags:
      - Service Groups
      parameters:
      - $ref: '#/components/parameters/clusterId'
      - $ref: '#/components/parameters/serviceGroupName'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceGroupSwitch'
      responses:
        '200':
          description: Service group switch initiated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobReference'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    ServiceGroupCreate:
      type: object
      required:
      - name
      - systemList
      properties:
        name:
          type: string
          description: Service group name
          example: app-sg
        systemList:
          type: array
          items:
            type: string
          description: Systems for the group
        autoStart:
          type: boolean
          description: Auto-start on cluster start
          default: true
        parallel:
          type: boolean
          description: Allow parallel execution
          default: false
    ServiceGroupSwitch:
      type: object
      required:
      - targetSystem
      properties:
        targetSystem:
          type: string
          description: System to switch the group to
          example: node02
    JobReference:
      type: object
      properties:
        jobId:
          type: string
          format: uuid
          description: Reference to the created job
          example: f9e8d7c6-b5a4-3210-fedc-ba9876543210
        status:
          type: string
          description: Initial job status
          example: queued
    ServiceGroupAction:
      type: object
      properties:
        system:
          type: string
          description: Target system for the action
          example: node01
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code
              example: NotFound
            message:
              type: string
              description: Error message
              example: The specified cluster was not found.
    ServiceGroupCollection:
      type: object
      properties:
        serviceGroups:
          type: array
          items:
            $ref: '#/components/schemas/ServiceGroup'
    ServiceGroup:
      type: object
      properties:
        name:
          type: string
          description: Service group name
          example: oracle-sg
        state:
          type: string
          description: Current service group state
          enum:
          - ONLINE
          - OFFLINE
          - FAULTED
          - PARTIAL
          - STARTING
          - STOPPING
          example: ONLINE
        systemList:
          type: array
          description: List of systems where this group can run
          items:
            type: string
          example:
          - node01
          - node02
        currentSystem:
          type: string
          description: System where the group is currently online
          example: node01
        autoStart:
          type: boolean
          description: Whether the group starts automatically
          example: true
        parallel:
          type: boolean
          description: Whether the group can run on multiple systems
          example: false
        resourceCount:
          type: integer
          description: Number of resources in this group
          example: 5
        groupType:
          type: string
          description: Type classification of the service group
          example: Failover
        critical:
          type: boolean
          description: Whether this is a critical service group
          example: true
  parameters:
    clusterId:
      name: clusterId
      in: path
      required: true
      description: The identifier of the cluster
      schema:
        type: string
      example: cluster-prod-01
    serviceGroupName:
      name: serviceGroupName
      in: path
      required: true
      description: The name of the service group
      schema:
        type: string
      example: oracle-sg
  responses:
    BadRequest:
      description: Bad request - invalid parameters
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Unauthorized - authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token authentication for InfoScale REST API