XSKY fs-active-directories API

FSActiveDirectoryController File Storage Active Directory Management

Operations 6

GET /fs-active-directories/ #
POST /fs-active-directories/ #
GET /fs-active-directories/{fs_active_directory_id} #
DELETE /fs-active-directories/{fs_active_directory_id} #
PATCH /fs-active-directories/{fs_active_directory_id} #
POST /fs-active-directories/{fs_active_directory_id}:verify #

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-fs-active-directories-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-fs-active-directories-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 Fs Active Directories API
  contact: {}
  license:
    name: Commercial
servers:
- url: /v1
tags:
- name: fs-active-directories
  description: 'FSActiveDirectoryController File Storage Active Directory Management

    '
paths:
  /fs-active-directories/:
    get:
      tags:
      - fs-active-directories
      description: List file storage active directories
      operationId: ListFSActiveDirectories
      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
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoriesResp'
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    post:
      tags:
      - fs-active-directories
      description: create file storage active directory
      operationId: CreateFSActiveDirectory
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoryResp'
        400:
          description: BadRequest
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FSActiveDirectoryCreateReq'
        description: file storage active directory info
        required: true
  /fs-active-directories/{fs_active_directory_id}:
    get:
      tags:
      - fs-active-directories
      description: Get a file storage active directory
      operationId: GetFSActiveDirectory
      parameters:
      - name: fs_active_directory_id
        in: path
        description: file storage active directory id
        required: true
        x-exportParamName: FsActiveDirectoryId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoryResp'
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    delete:
      tags:
      - fs-active-directories
      description: Delete file storage active directory
      operationId: DeleteFSActiveDirectory
      parameters:
      - name: fs_active_directory_id
        in: path
        description: file storage active directory id
        required: true
        x-exportParamName: FsActiveDirectoryId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoryResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
    patch:
      tags:
      - fs-active-directories
      description: Update a file storage active directory
      operationId: UpdateFSActiveDirectory
      parameters:
      - name: fs_active_directory_id
        in: path
        description: file storage active directory id
        required: true
        x-exportParamName: FsActiveDirectoryId
        schema:
          type: integer
          format: int64
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoryResp'
        400:
          description: BadRequest
        404:
          description: NotFound
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FSActiveDirectoryUpdateReq'
        description: file storage active directory info
        required: true
  /fs-active-directories/{fs_active_directory_id}:verify:
    post:
      tags:
      - fs-active-directories
      description: Verify a fs active directory or user/group info
      operationId: VerifyFSActiveDirectory
      parameters:
      - name: fs_active_directory_id
        in: path
        description: file storage active directory id
        required: true
        x-exportParamName: FsActiveDirectoryId
        schema:
          type: integer
          format: int64
      responses:
        202:
          description: Accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FSActiveDirectoryResp'
        404:
          description: NotFound
        409:
          description: Conflict
        500:
          description: InternalServerError
      security:
      - tokenInQuery: []
      - tokenInHeader: []
components:
  schemas:
    FSActiveDirectoryUpdateReq_Info:
      type: object
      properties:
        ip:
          type: string
          description: ip of dns server
        name:
          type: string
          description: name of active directory
        password:
          type: string
          description: password of active directory
        realm:
          type: string
          description: realm of active directory
        username:
          type: string
          description: username of active directory
        workgroup:
          type: string
          description: workgroup of active directory
      title: FSActiveDirectoryUpdateReq_Info
    FSActiveDirectoryCreateReq_Info:
      type: object
      required:
      - name
      - password
      - realm
      - username
      - workgroup
      properties:
        ip:
          type: string
          description: ip of dns server
        name:
          type: string
          description: name of active directory
        password:
          type: string
          description: password of active directory
        realm:
          type: string
          description: realm of active directory
        username:
          type: string
          description: username of active directory
        workgroup:
          type: string
          description: workgroup of active directory
      title: FSActiveDirectoryCreateReq_Info
    FSActiveDirectoryResp:
      type: object
      required:
      - fs_active_directory
      properties:
        fs_active_directory:
          description: file storage active directory
          $ref: '#/components/schemas/FSActiveDirectory'
      title: FSActiveDirectoryResp
      example:
        fs_active_directory:
          workgroup: workgroup
          ip: ip
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          update: '2000-01-23T04:56:07.000+00:00'
          fs_gateway_group_num: 0
          realm: realm
          id: 6
          verify_time: '2000-01-23T04:56:07.000+00:00'
          action_status: action_status
          status: status
          username: username
    FSActiveDirectoriesResp:
      type: object
      required:
      - fs_active_directories
      properties:
        fs_active_directories:
          type: array
          description: file storage active directories
          items:
            $ref: '#/components/schemas/FSActiveDirectory'
      title: FSActiveDirectoriesResp
      example:
        fs_active_directories:
        - workgroup: workgroup
          ip: ip
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          update: '2000-01-23T04:56:07.000+00:00'
          fs_gateway_group_num: 0
          realm: realm
          id: 6
          verify_time: '2000-01-23T04:56:07.000+00:00'
          action_status: action_status
          status: status
          username: username
        - workgroup: workgroup
          ip: ip
          name: name
          create: '2000-01-23T04:56:07.000+00:00'
          update: '2000-01-23T04:56:07.000+00:00'
          fs_gateway_group_num: 0
          realm: realm
          id: 6
          verify_time: '2000-01-23T04:56:07.000+00:00'
          action_status: action_status
          status: status
          username: username
    FSActiveDirectoryCreateReq:
      type: object
      required:
      - fs_active_directory
      properties:
        fs_active_directory:
          $ref: '#/components/schemas/FSActiveDirectoryCreateReq_Info'
      title: FSActiveDirectoryCreateReq
    FSActiveDirectory:
      type: object
      properties:
        action_status:
          type: string
        create:
          type: string
          format: date-time
        fs_gateway_group_num:
          type: integer
          format: int64
        id:
          type: integer
          format: int64
        ip:
          type: string
        name:
          type: string
        realm:
          type: string
        status:
          type: string
        update:
          type: string
          format: date-time
        username:
          type: string
        verify_time:
          type: string
          format: date-time
        workgroup:
          type: string
      title: FSActiveDirectory
      description: FSActiveDirectory defines file storage active directory
      example:
        workgroup: workgroup
        ip: ip
        name: name
        create: '2000-01-23T04:56:07.000+00:00'
        update: '2000-01-23T04:56:07.000+00:00'
        fs_gateway_group_num: 0
        realm: realm
        id: 6
        verify_time: '2000-01-23T04:56:07.000+00:00'
        action_status: action_status
        status: status
        username: username
    FSActiveDirectoryUpdateReq:
      type: object
      required:
      - fs_active_directory
      properties:
        fs_active_directory:
          $ref: '#/components/schemas/FSActiveDirectoryUpdateReq_Info'
      title: FSActiveDirectoryUpdateReq
  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