AppOmni Security Events API

SaaS security event monitoring and management

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/appomni-security-events-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

appomni-security-events-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: AppOmni SaaS Security Compliance Security Events API
  description: API for the AppOmni SaaS security management platform, providing access to security events, policy management, compliance reporting, and threat detection across enterprise SaaS applications like Salesforce, Microsoft 365, and Slack.
  version: 1.0.0
  contact:
    name: AppOmni
    url: https://www.appomni.com
  license:
    name: Proprietary
servers:
- url: https://api.appomni.com/v1
  description: AppOmni SaaS Security API
security:
- bearerAuth: []
tags:
- name: Security Events
  description: SaaS security event monitoring and management
paths:
  /events:
    get:
      operationId: listSecurityEvents
      summary: AppOmni - List Security Events
      description: Returns a list of security events detected across monitored SaaS applications
      tags:
      - Security Events
      parameters:
      - name: severity
        in: query
        description: Filter by event severity (critical, high, medium, low, info)
        schema:
          type: string
          enum:
          - critical
          - high
          - medium
          - low
          - info
      - name: application
        in: query
        description: Filter by SaaS application name
        schema:
          type: string
      - name: status
        in: query
        description: Filter by event status (open, investigating, resolved, dismissed)
        schema:
          type: string
      - name: from
        in: query
        description: Start date for filtering events (ISO 8601)
        schema:
          type: string
          format: date-time
      - name: to
        in: query
        description: End date for filtering events (ISO 8601)
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: A list of security events
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/SecurityEvent'
                  total:
                    type: integer
              examples:
                ListEventsExample:
                  x-microcks-default: true
                  summary: Example security events list
                  value:
                    data:
                    - eventId: EVT-2026-00042
                      severity: high
                      type: anomaly
                      application: Salesforce
                      description: Unusual bulk data export detected
                      detectedAt: '2026-04-19T02:15:00Z'
                      status: open
                    total: 1
        '401':
          description: Unauthorized - invalid or missing authentication token
  /events/{eventId}:
    get:
      operationId: getSecurityEvent
      summary: AppOmni - Get Security Event
      description: Returns details for a specific security event
      tags:
      - Security Events
      parameters:
      - name: eventId
        in: path
        required: true
        description: Unique security event identifier
        schema:
          type: string
      responses:
        '200':
          description: Security event details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityEvent'
              examples:
                GetEventExample:
                  x-microcks-default: true
                  summary: Example security event detail
                  value:
                    eventId: EVT-2026-00042
                    severity: high
                    type: anomaly
                    application: Salesforce
                    description: Unusual bulk data export detected - user exported 50,000 records outside business hours
                    detectedAt: '2026-04-19T02:15:00Z'
                    status: open
                    userId: user@example.com
        '404':
          description: Security event not found
        '401':
          description: Unauthorized - invalid or missing authentication token
components:
  schemas:
    SecurityEvent:
      title: SecurityEvent
      description: A security event detected by AppOmni in a SaaS application
      type: object
      properties:
        eventId:
          type: string
          description: Unique event identifier
        severity:
          type: string
          enum:
          - critical
          - high
          - medium
          - low
          - info
          description: Event severity level
        type:
          type: string
          description: Type of security event
        application:
          type: string
          description: SaaS application where event occurred
        description:
          type: string
          description: Human-readable event description
        detectedAt:
          type: string
          format: date-time
          description: When the event was detected
        status:
          type: string
          enum:
          - open
          - investigating
          - resolved
          - dismissed
          description: Event investigation status
        userId:
          type: string
          description: User associated with the event
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT