Cybereason IsolationRules API

The IsolationRules API from Cybereason — 2 operation(s) for isolationrules.

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/cybereason-isolationrules-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

cybereason-isolationrules-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Cybereason Authentication IsolationRules API
  version: 23.x
  description: 'Cybereason EDR/XDR REST API. Exposes Malop investigation, hunting

    via Visual Search, sensor management, isolation rules, custom

    detection rules, reputation lists, threat-intel lookups, malware

    queries, and remediation actions against a Cybereason tenant.


    Best-effort spec derived from publicly indexed Cybereason API

    documentation references (api-doc.cybereason.com URI/endpoints

    pages, docs.cybereason.com 23.2 docs, Cortex XSOAR / Demisto

    Cybereason integration, and the open-source CybereasonAPI

    PowerShell module). Cybereason''s primary API documentation is

    customer/partner-gated; the operational surface modelled here

    matches the publicly described endpoints.


    Authentication is performed via a POST to /login.html which

    returns a JSESSIONID cookie used on subsequent calls. JWT

    authentication is also supported on version 20.1+ deployments.

    '
  contact:
    name: Cybereason Nest
    url: https://nest.cybereason.com/documentation/api-documentation
  license:
    name: Proprietary
servers:
- url: https://{tenant}.cybereason.net
  description: Cybereason tenant
  variables:
    tenant:
      default: example
      description: Your Cybereason tenant hostname prefix.
security:
- SessionCookie: []
tags:
- name: IsolationRules
paths:
  /rest/settings/isolation-rule:
    get:
      tags:
      - IsolationRules
      summary: List isolation rules
      responses:
        '200':
          description: Isolation rules
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IsolationRule'
    post:
      tags:
      - IsolationRules
      summary: Create isolation rule
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IsolationRule'
      responses:
        '200':
          description: Rule created
    put:
      tags:
      - IsolationRules
      summary: Update isolation rule
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IsolationRule'
      responses:
        '200':
          description: Rule updated
  /rest/settings/isolation-rule/delete:
    post:
      tags:
      - IsolationRules
      summary: Delete isolation rule
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IsolationRule'
      responses:
        '200':
          description: Rule deleted
components:
  schemas:
    IsolationRule:
      type: object
      properties:
        ruleId:
          type: string
        ipAddress:
          type: string
        ipAddressString:
          type: string
        port:
          type: integer
        portRangeStart:
          type: integer
        portRangeEnd:
          type: integer
        direction:
          type: string
          enum:
          - INCOMING
          - OUTGOING
          - ALL
        blocking:
          type: boolean
  securitySchemes:
    SessionCookie:
      type: apiKey
      in: cookie
      name: JSESSIONID
      description: Session cookie returned by POST /login.html.
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Available on Cybereason 20.1+ for token-based access.
externalDocs:
  description: Cybereason API documentation
  url: https://nest.cybereason.com/documentation/api-documentation