Shuffle Administration API

The Administration API from Shuffle — 1 operation(s) for administration.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

shuffle-administration-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Shuffle Administration API
  description: Shuffle is an open source security automation platform (SOAR) built for and by security professionals. The Shuffle REST API provides programmatic access to all platform capabilities including workflow management, app integration, execution control, user management, organization administration, file storage, datastore operations, and webhook triggers. Everything available in the Shuffle frontend is accessible via the API.
  version: v1
  contact:
    name: Shuffle Support
    url: https://shuffler.io/docs
    email: frikky@shuffler.io
  license:
    name: Apache 2.0
    url: https://github.com/Shuffle/Shuffle/blob/main/LICENSE
servers:
- url: https://shuffler.io/api/v1
  description: Shuffle Cloud
- url: https://{domain}/api/v1
  description: Shuffle On-Premises
  variables:
    domain:
      description: Your Shuffle instance domain
      default: localhost
security:
- BearerAuth: []
tags:
- name: Administration
paths:
  /getenvironments:
    get:
      operationId: listEnvironments
      summary: List Environments
      description: Returns all execution environments (workers) configured for the organization.
      tags:
      - Administration
      responses:
        '200':
          description: List of environments
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Environment'
components:
  schemas:
    Environment:
      type: object
      properties:
        name:
          type: string
        type:
          type: string
        running_ip:
          type: string
        org_id:
          type: string
        auth:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: 'API key obtained from Shuffle profile settings. Include as: Authorization: Bearer <APIKEY>'