> ## Documentation Index
> Fetch the complete documentation index at: https://docs.slate-labs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Breach Events

> List breach events across all journeys, scoped by caller's customer_view_scope.

- customer_id / customer_name / customer_email resolved via prop_journeys JOIN customers.
- status filter narrows on review_status (pending / confirmed / reverted).
- Ordered by triggered_at DESC so newest breach appears first.



## OpenAPI

````yaml /openapi.json get /prop/breach-events
openapi: 3.1.0
info:
  title: Slate API
  version: 1.0.0
  description: Trading infrastructure API.
servers:
  - url: https://api.{your-broker}.slate-labs.com
    variables:
      your-broker:
        default: broker
security: []
tags:
  - name: Authentication
  - name: API Tokens
  - name: Customers
  - name: Accounts
  - name: Orders
  - name: Instruments & Groups
  - name: Transactions
  - name: Payments
  - name: Transfers
  - name: Risk
  - name: Workflow & CRM
  - name: Messaging
  - name: Integrations
  - name: Webhooks
  - name: Compliance
  - name: Promo codes
  - name: Reporting
  - name: Audit
  - name: Fraud & moderation
  - name: Broker settings
  - name: Users
  - name: Roles & Teams
  - name: Streams (SSE)
  - name: Simulator
  - name: Observability
  - name: Prop trading
paths:
  /prop/breach-events:
    get:
      tags:
        - Prop trading
      summary: List Breach Events
      description: >-
        List breach events across all journeys, scoped by caller's
        customer_view_scope.


        - customer_id / customer_name / customer_email resolved via
        prop_journeys JOIN customers.

        - status filter narrows on review_status (pending / confirmed /
        reverted).

        - Ordered by triggered_at DESC so newest breach appears first.
      operationId: list_breach_events_prop_breach_events_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: severity
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Severity
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BreachQueueResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    BreachQueueResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/PropBreachEvent'
          type: array
          title: Items
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - total
      title: BreachQueueResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PropBreachEvent:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        journey_id:
          type: string
          format: uuid
          title: Journey Id
        account_id:
          type: string
          format: uuid
          title: Account Id
        account_login:
          anyOf:
            - type: string
            - type: 'null'
          title: Account Login
        customer_id:
          type: string
          format: uuid
          title: Customer Id
        customer_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Name
        customer_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Customer Email
        rule_type:
          type: string
          title: Rule Type
        severity:
          type: string
          title: Severity
        review_status:
          type: string
          title: Review Status
        triggered_at:
          type: string
          title: Triggered At
        triggered_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Triggered Value
        threshold_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Threshold Value
        baseline_value:
          anyOf:
            - type: number
            - type: 'null'
          title: Baseline Value
        tick_symbol:
          anyOf:
            - type: string
            - type: 'null'
          title: Tick Symbol
        tick_bid:
          anyOf:
            - type: number
            - type: 'null'
          title: Tick Bid
        tick_ask:
          anyOf:
            - type: number
            - type: 'null'
          title: Tick Ask
        tick_source:
          anyOf:
            - type: string
            - type: 'null'
          title: Tick Source
        detected_by:
          anyOf:
            - type: string
            - type: 'null'
          title: Detected By
        positions_closed:
          items: {}
          type: array
          title: Positions Closed
        positions_failed:
          items: {}
          type: array
          title: Positions Failed
      type: object
      required:
        - id
        - journey_id
        - account_id
        - account_login
        - customer_id
        - customer_name
        - customer_email
        - rule_type
        - severity
        - review_status
        - triggered_at
        - triggered_value
        - threshold_value
        - baseline_value
        - tick_symbol
        - tick_bid
        - tick_ask
        - tick_source
        - detected_by
        - positions_closed
        - positions_failed
      title: PropBreachEvent
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````