XSKY vip-groups API

VIPGroupController API /vip-groups

Operations 6

GET /vip-groups/ #
POST /vip-groups/ #
GET /vip-groups/{vip_group_id} #
DELETE /vip-groups/{vip_group_id} #
PATCH /vip-groups/{vip_group_id} #
POST /vip-groups/{vip_group_id}:redeploy #

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/xsky-vip-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

xsky-vip-groups-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: XMS is the controller of distributed storage system
  version: SDS_4.2.000.0.200302
  title: XMS access-paths Vip Groups API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: vip-groups
  description: 'VIPGroupController API /vip-groups

    '
paths:
  /vip-groups/:
    get:
      tags:
      - vip-groups
      description: List vip groups
      operationId: ListVIPGroups
      parameters:
      - name: limit
        in: query
        description: paging param
        required: false
        x-exportParamName: Limit
        schema:
          type: integer
          format: int64
      - name: offset
        in: query
        description: paging param
        required: false
        x-exportParamName: Offset
        schema:
          type: integer
          format: int64
      - name: resource_type
        in: query
        description: resource type
        required: false
        x-exportParamName: ResourceType
        schema:
          type: string
      - name: resource_id
        in: query
        description: resource id
        required: false
        x-exportParamName: ResourceId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResps'
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - vip-groups
      description: Create a vip group
      operationId: CreateVIPGroup
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResp'
        400:
          description: BadRequest
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VIPGroupCreateReq'
        description: vip group info
        required: true
  /vip-groups/{vip_group_id}:
    get:
      tags:
      - vip-groups
      description: Get a vip group
      operationId: GetVIPGroup
      parameters:
      - name: vip_group_id
        in: path
        description: vip group id
        required: true
        x-exportParamName: VipGroupId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    delete:
      tags:
      - vip-groups
      description: Delete a vip group
      operationId: DeleteVIPGroup
      parameters:
      - name: vip_group_id
        in: path
        description: vip group id
        required: true
        x-exportParamName: VipGroupId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    patch:
      tags:
      - vip-groups
      description: Update a vip group
      operationId: UpdateVIPGroup
      parameters:
      - name: vip_group_id
        in: path
        description: vip group id
        required: true
        x-exportParamName: VipGroupId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VIPGroupUpdateReq'
        description: vip group info
        required: true
  /vip-groups/{vip_group_id}:redeploy:
    post:
      tags:
      - vip-groups
      description: Redeploy a vip group
      operationId: RedeployVIPGroup
      parameters:
      - name: vip_group_id
        in: path
        description: vip group id
        required: true
        x-exportParamName: VipGroupId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VIPGroupResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    VIPGroupUpdateReq:
      type: object
      required:
      - vip_group
      properties:
        vip_group:
          $ref: '#/components/schemas/VIPGroupUpdateReq_VIPGroup'
      title: VIPGroupUpdateReq
    VIPGroupUpdateReq_VIPGroup:
      type: object
      properties:
        preempt:
          type: boolean
      title: VIPGroupUpdateReq_VIPGroup
    VIPGroupCreateReq:
      type: object
      required:
      - vip_group
      properties:
        vip_group:
          $ref: '#/components/schemas/VIPGroupCreateReq_VIPGroup'
      title: VIPGroupCreateReq
    VIPGroupResp:
      type: object
      required:
      - vip_group
      properties:
        vip_group:
          $ref: '#/components/schemas/VIPGroup'
      title: VIPGroupResp
      example:
        vip_group:
          name: name
          resource_type: resource_type
          create: '2000-01-23T04:56:07.000+00:00'
          resource_id: 6
          update: '2000-01-23T04:56:07.000+00:00'
          id: 0
          preempt: true
          action_status: action_status
          network: network
          status: status
    VIPGroup:
      type: object
      properties:
        action_status:
          type: string
        create:
          type: string
          format: date-time
        id:
          type: integer
          format: int64
        name:
          type: string
        network:
          type: string
        preempt:
          type: boolean
        resource_id:
          type: integer
          format: int64
        resource_type:
          type: string
        status:
          type: string
        update:
          type: string
          format: date-time
      title: VIPGroup
      description: VIPGroup contains many vips and associated to a resource.
      example:
        name: name
        resource_type: resource_type
        create: '2000-01-23T04:56:07.000+00:00'
        resource_id: 6
        update: '2000-01-23T04:56:07.000+00:00'
        id: 0
        preempt: true
        action_status: action_status
        network: network
        status: status
    VIPGroupCreateReq_VIPGroup_VIPs_Elt:
      type: object
      required:
      - ip
      - network_address_id
      properties:
        ip:
          type: string
        mask:
          type: integer
          format: int64
        network_address_id:
          type: integer
          format: int64
      title: VIPGroupCreateReq_VIPGroup_VIPs_Elt
    VIPGroupResps:
      type: object
      required:
      - vip_groups
      properties:
        vip_groups:
          type: array
          items:
            $ref: '#/components/schemas/VIPGroup'
      title: VIPGroupResps
      example:
        vip_groups:
        - name: name
          resource_type: resource_type
          create: '2000-01-23T04:56:07.000+00:00'
          resource_id: 6
          update: '2000-01-23T04:56:07.000+00:00'
          id: 0
          preempt: true
          action_status: action_status
          network: network
          status: status
        - name: name
          resource_type: resource_type
          create: '2000-01-23T04:56:07.000+00:00'
          resource_id: 6
          update: '2000-01-23T04:56:07.000+00:00'
          id: 0
          preempt: true
          action_status: action_status
          network: network
          status: status
    VIPGroupCreateReq_VIPGroup:
      type: object
      required:
      - network
      - resource_id
      - resource_type
      - vips
      properties:
        network:
          type: string
        preempt:
          type: boolean
        resource_id:
          type: integer
          format: int64
        resource_type:
          type: string
        vips:
          type: array
          items:
            $ref: '#/components/schemas/VIPGroupCreateReq_VIPGroup_VIPs_Elt'
      title: VIPGroupCreateReq_VIPGroup
  securitySchemes:
    tokenInHeader:
      description: auth by token
      type: apiKey
      name: Xms-Auth-Token
      in: header
    tokenInQuery:
      description: auth by token
      type: apiKey
      name: token
      in: query