Pluralsight Flow Integrations API

REST API for managing Flow integrations and checking connection status with external tools and services.

OpenAPI Specification

flow-integrations.yml Raw ↑
openapi: 3.1.0
info:
  title: Pluralsight Flow Integrations API
  description: REST API for managing Flow integrations and checking connection status with external tools and services.
  version: 1.0.0
  contact:
    name: Pluralsight API Support
    email: [email protected]
    url: https://help.pluralsight.com
  license:
    name: Proprietary
    url: https://www.pluralsight.com/terms
servers:
- url: https://{workspace}.appfireflow.com/v3/customer/core
  description: Production
  variables:
    workspace:
      description: Your Flow workspace identifier
      default: your-workspace
externalDocs:
  description: Integrations API Documentation
  url: https://help.pluralsight.com/hc/en-us/articles/24285986280212-Integrations-API
tags:
- name: Integrations
  description: Flow integration management operations
paths:
  /integrations:
    get:
      summary: Pluralsight List Integrations
      description: Retrieve a list of Flow integrations and check connection status with external tools and services.
      operationId: listIntegrations
      tags:
      - Integrations
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Successful response with integration data
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                    description: Integration records
        '401':
          description: Unauthorized - Invalid or missing authentication token
        '429':
          description: Too Many Requests - Rate limit exceeded
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT