XSKY access-paths API

AccessPathController Operations able access paths

Operations 5

GET /access-paths/ #
POST /access-paths/ #
GET /access-paths/{access_path_id} #
DELETE /access-paths/{access_path_id} #
PATCH /access-paths/{access_path_id} #

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-access-paths-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-access-paths-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 API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: access-paths
  description: 'AccessPathController Operations able access paths

    '
paths:
  /access-paths/:
    get:
      tags:
      - access-paths
      description: List access paths
      operationId: ListAccessPaths
      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: q
        in: query
        description: query param of search
        required: false
        x-exportParamName: Q
        schema:
          type: string
      - name: client_group_id
        in: query
        description: related client group id
        required: false
        x-exportParamName: ClientGroupId
        schema:
          type: integer
          format: int64
      - name: all
        in: query
        description: show all access targets
        required: false
        x-exportParamName: All
        schema:
          type: boolean
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathsResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - access-paths
      description: Create an access path
      operationId: CreateAccessPath
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccessPathCreateReq'
        description: access path info
        required: true
  /access-paths/{access_path_id}:
    get:
      tags:
      - access-paths
      description: Get access path by id
      operationId: GetAccessPath
      parameters:
      - name: access_path_id
        in: path
        description: access path id
        required: true
        x-exportParamName: AccessPathId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        400:
          description: BadRequest
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    delete:
      tags:
      - access-paths
      description: Delete access path
      operationId: DeleteAccessPath
      parameters:
      - name: access_path_id
        in: path
        description: access path id
        required: true
        x-exportParamName: AccessPathId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInHeader: []
      - tokenInQuery: []
    patch:
      tags:
      - access-paths
      description: update access path
      operationId: UpdateAccessPath
      parameters:
      - name: access_path_id
        in: path
        description: access path id
        required: true
        x-exportParamName: AccessPathId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessPathResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccessPathUpdateReq'
        description: access path info
        required: true
components:
  schemas:
    AccessPathUpdateReq_AccessPath:
      type: object
      properties:
        chap:
          type: boolean
        description:
          type: string
        name:
          type: string
        tname:
          type: string
        tsecret:
          type: string
      title: AccessPathUpdateReq_AccessPath
      example:
        name: name
        description: description
        tname: tname
        chap: true
        tsecret: tsecret
    AccessPathCreateReq:
      type: object
      properties:
        access_path:
          $ref: '#/components/schemas/AccessPathCreateReq_AccessPath'
      title: AccessPathCreateReq
      example:
        access_path:
          name: name
          description: description
          tname: tname
          chap: true
          tsecret: tsecret
          host_ids:
          - 0
          - 0
          type: type
          mapping_groups:
          - client_group_id: 5
            block_volume_ids:
            - 1
            - 1
            access_path_id: 6
          - client_group_id: 5
            block_volume_ids:
            - 1
            - 1
            access_path_id: 6
          protection_domain_id: 5
    AccessPathResp:
      type: object
      required:
      - access_path
      properties:
        access_path:
          $ref: '#/components/schemas/AccessPath'
      title: AccessPathResp
      example:
        access_path:
          hidden: true
          block_volume_num: 0
          iqn: iqn
          client_group_num: 6
          description: description
          tname: tname
          update: '2000-01-23T04:56:07.000+00:00'
          tsecret: tsecret
          type: type
          protection_domain:
            name: name
            id: 5
          vip_group_num: 5
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          chap: true
          id: 1
          action_status: action_status
          status: status
    AccessPath:
      type: object
      properties:
        action_status:
          type: string
        block_volume_num:
          type: integer
          format: int64
        chap:
          type: boolean
        client_group_num:
          type: integer
          format: int64
        create:
          type: string
          format: date-time
        description:
          type: string
        hidden:
          type: boolean
        id:
          type: integer
          format: int64
        iqn:
          type: string
        name:
          type: string
        protection_domain:
          $ref: '#/components/schemas/ProtectionDomain_Nestview'
        status:
          type: string
        tname:
          type: string
        tsecret:
          type: string
        type:
          type: string
        update:
          type: string
          format: date-time
        vip_group_num:
          type: integer
          format: int64
      title: AccessPath
      description: AccessPath defines access path
      example:
        hidden: true
        block_volume_num: 0
        iqn: iqn
        client_group_num: 6
        description: description
        tname: tname
        update: '2000-01-23T04:56:07.000+00:00'
        tsecret: tsecret
        type: type
        protection_domain:
          name: name
          id: 5
        vip_group_num: 5
        name: name
        create: '2000-01-23T04:56:07.000+00:00'
        chap: true
        id: 1
        action_status: action_status
        status: status
    AccessPathCreateReq_AccessPath:
      type: object
      properties:
        chap:
          type: boolean
        description:
          type: string
        host_ids:
          type: array
          items:
            type: integer
            format: int64
        mapping_groups:
          type: array
          items:
            $ref: '#/components/schemas/MappingGroupReq'
        name:
          type: string
        protection_domain_id:
          type: integer
          format: int64
        tname:
          type: string
        tsecret:
          type: string
        type:
          type: string
      title: AccessPathCreateReq_AccessPath
      example:
        name: name
        description: description
        tname: tname
        chap: true
        tsecret: tsecret
        host_ids:
        - 0
        - 0
        type: type
        mapping_groups:
        - client_group_id: 5
          block_volume_ids:
          - 1
          - 1
          access_path_id: 6
        - client_group_id: 5
          block_volume_ids:
          - 1
          - 1
          access_path_id: 6
        protection_domain_id: 5
    AccessPathsResp:
      type: object
      required:
      - access_paths
      properties:
        access_paths:
          type: array
          items:
            $ref: '#/components/schemas/AccessPath'
      title: AccessPathsResp
      example:
        access_paths:
        - hidden: true
          block_volume_num: 0
          iqn: iqn
          client_group_num: 6
          description: description
          tname: tname
          update: '2000-01-23T04:56:07.000+00:00'
          tsecret: tsecret
          type: type
          protection_domain:
            name: name
            id: 5
          vip_group_num: 5
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          chap: true
          id: 1
          action_status: action_status
          status: status
        - hidden: true
          block_volume_num: 0
          iqn: iqn
          client_group_num: 6
          description: description
          tname: tname
          update: '2000-01-23T04:56:07.000+00:00'
          tsecret: tsecret
          type: type
          protection_domain:
            name: name
            id: 5
          vip_group_num: 5
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          chap: true
          id: 1
          action_status: action_status
          status: status
    AccessPathUpdateReq:
      type: object
      required:
      - access_path
      properties:
        access_path:
          $ref: '#/components/schemas/AccessPathUpdateReq_AccessPath'
      title: AccessPathUpdateReq
      example:
        access_path:
          name: name
          description: description
          tname: tname
          chap: true
          tsecret: tsecret
    ProtectionDomain_Nestview:
      type: object
      properties:
        id:
          type: integer
          format: int64
          description: id of protection domain
        name:
          type: string
          description: name of protection domain
      title: ProtectionDomain_Nestview
      example:
        name: name
        id: 5
    MappingGroupReq:
      type: object
      properties:
        access_path_id:
          type: integer
          format: int64
        block_volume_ids:
          type: array
          items:
            type: integer
            format: int64
        client_group_id:
          type: integer
          format: int64
      title: MappingGroupReq
      example:
        client_group_id: 5
        block_volume_ids:
        - 1
        - 1
        access_path_id: 6
  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