Fullview Bug Report API

The Bug Report API from Fullview — 2 operation(s) for bug report.

Operations 2

POST /access/api/integrations/bug-report/start Start a bug recording #
POST /access/api/integrations/bug-report/stop Stop a bug recording #

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/fullview-bug-report-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

fullview-bug-report-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fullview Bug Report API
  version: '1.0'
  description: Fullview integration API for programmatically starting and stopping a bug recording (session replay capture) for an identified end user. Documented in the Fullview developer knowledge base ("Report a bug - API endpoints"). Used by help-desk / support integrations to attach a Fullview session recording to a support case. Captured verbatim from public Fullview documentation by the API Evangelist enrichment pipeline.
  contact:
    name: Fullview Support
    email: support@fullview.io
    url: https://support.fullview.io/en/
  x-source: https://support.fullview.io/en/articles/11552509-report-a-bug-api-endpoints
servers:
- url: https://api.eu1.fullview.io
  description: Fullview EU1 region API host
security:
- fullviewOIDC: []
tags:
- name: Bug Report
paths:
  /access/api/integrations/bug-report/start:
    post:
      operationId: startBugReport
      summary: Start a bug recording
      description: Starts a Fullview bug recording (session replay) for the identified end user so a support agent can review the reproduction. Optionally carries help-desk integration context (platform, workspace, case).
      tags:
      - Bug Report
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StartBugReportRequest'
      responses:
        '200':
          description: Bug recording started.
  /access/api/integrations/bug-report/stop:
    post:
      operationId: stopBugReport
      summary: Stop a bug recording
      description: Stops an in-progress Fullview bug recording for the identified end user.
      tags:
      - Bug Report
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StopBugReportRequest'
      responses:
        '200':
          description: Bug recording stopped.
components:
  schemas:
    StopBugReportRequest:
      type: object
      required:
      - organisationId
      - externalId
      - email
      properties:
        organisationId:
          type: string
          description: The Fullview organisation identifier.
        externalId:
          type: string
          description: The end user's identifier in your system.
        email:
          type: string
          format: email
          description: The end user's email address.
    IntegrationData:
      type: object
      description: Optional help-desk integration context attached to the recording.
      properties:
        platform:
          type: string
          description: The help-desk platform (e.g. zendesk, intercom, salesforce, hubspot).
        workspaceId:
          type: string
        caseId:
          type: string
    StartBugReportRequest:
      type: object
      required:
      - organisationId
      - externalId
      - email
      properties:
        organisationId:
          type: string
          description: The Fullview organisation identifier.
        externalId:
          type: string
          description: The end user's identifier in your system (the identified user).
        email:
          type: string
          format: email
          description: The end user's email address.
        integrationData:
          $ref: '#/components/schemas/IntegrationData'
  securitySchemes:
    fullviewOIDC:
      type: openIdConnect
      openIdConnectUrl: https://auth.eu1.fullview.io/realms/fullview-idp-users-eu1/.well-known/openid-configuration
      description: Fullview uses a Keycloak-based OpenID Connect provider for platform authentication (realm fullview-idp-users-eu1).