Brocade Communications Systems Operations API

The Operations API from Brocade Communications Systems — 4 operation(s) for operations.

Operations 4

POST /operations/zone Run zoning operation #
GET /operations/show-status Show asynchronous operation status #
POST /operations/configupload Upload device configuration #
POST /operations/configdownload Download configuration to device #

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/brocade-communications-systems-operations-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

brocade-communications-systems-operations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Brocade Fabric OS REST Chassis Operations API
  description: The Brocade Fabric OS (FOS) REST API is a RESTCONF (RFC 8040) interface built on YANG 1.1 data models for managing Brocade SAN switches. It exposes operations for authentication, chassis, ports, zoning, security, and monitoring on Fabric OS 8.2.0 and later. Login returns an Authorization token used for subsequent calls.
  version: 9.2.x
  contact:
    name: Brocade Fabric OS REST API
    url: https://techdocs.broadcom.com/us/en/fibre-channel-networking/fabric-os/fabric-os-rest-api/9-2-x.html
servers:
- url: https://{switch-ip}/rest
  description: Brocade switch REST endpoint
  variables:
    switch-ip:
      default: 10.0.0.1
      description: IP address or hostname of the Brocade switch
security:
- BasicAuth: []
- SessionToken: []
tags:
- name: Operations
paths:
  /operations/zone:
    post:
      summary: Run zoning operation
      description: RPC operation for activating or disabling a zone configuration.
      operationId: zoneOperation
      tags:
      - Operations
      requestBody:
        required: true
        content:
          application/yang-data+json:
            schema:
              type: object
      responses:
        '200':
          description: Operation result
          content:
            application/yang-data+json:
              schema:
                type: object
  /operations/show-status:
    get:
      summary: Show asynchronous operation status
      operationId: showStatus
      tags:
      - Operations
      parameters:
      - name: message-id
        in: query
        schema:
          type: string
      responses:
        '200':
          description: Status
          content:
            application/yang-data+json:
              schema:
                type: object
  /operations/configupload:
    post:
      summary: Upload device configuration
      operationId: configUpload
      tags:
      - Operations
      requestBody:
        required: true
        content:
          application/yang-data+json:
            schema:
              type: object
      responses:
        '200':
          description: Operation started
          content:
            application/yang-data+json:
              schema:
                type: object
  /operations/configdownload:
    post:
      summary: Download configuration to device
      operationId: configDownload
      tags:
      - Operations
      requestBody:
        required: true
        content:
          application/yang-data+json:
            schema:
              type: object
      responses:
        '200':
          description: Operation started
          content:
            application/yang-data+json:
              schema:
                type: object
components:
  securitySchemes:
    BasicAuth:
      type: http
      scheme: basic
    SessionToken:
      type: apiKey
      in: header
      name: Authorization