Armor Security Detections API

Security detection operations

Business capability
Threat Detection & Response Management BC-620.30

Operations 5

GET /security-detections/{detectionId} Get Details of a Detection #
GET /security-detections List Detections #
GET /v2/security-detections List Detections with Pagination #
GET /security-detections/accounts/{accountId} List Parent Customer Security Detections #
GET /v2/security-detections/accounts/{accountId} List Parent Customer Security Detections with Pagination #

Documentation

Specifications

Other Resources

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/armor-security-detections-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

armor-security-detections-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Incident Management Security Detections API
  description: 'APIs for interacting with Armor products and services for incident management.


    Base URL: `https://security-detections.api.secure-prod.services/`

    '
  version: 1.0.0
servers:
- url: https://security-detections.api.secure-dev.services
  description: Development
- url: https://security-detections.api.secure-stage.services
  description: Staging
- url: https://security-detections.api.secure-prod.services
  description: Production
security:
- OAuth2: []
tags:
- name: Security Detections
  description: Security detection operations
paths:
  /security-detections/{detectionId}:
    get:
      tags:
      - Security Detections
      summary: Get Details of a Detection
      description: Get the details of a specific security detection or incident.
      operationId: getDetectionDetail
      parameters:
      - name: detectionId
        in: path
        required: true
        description: The unique ID for detection.
        schema:
          type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetection'
        '403':
          $ref: '#/components/responses/Forbidden'
  /security-detections:
    get:
      tags:
      - Security Detections
      summary: List Detections
      description: Get a list of all security detections and incidents.
      operationId: listDetections
      parameters:
      - $ref: '#/components/parameters/AccountContext'
      - $ref: '#/components/parameters/Range'
      - $ref: '#/components/parameters/PaginationToken'
      - name: filter
        in: query
        description: 'OData filter parameter.

          Example: `*+like+IR19432+and+severity+eq+Low+and+detectionType+eq+Incident+and+status+eq+New`

          '
        schema:
          type: string
      - name: search
        in: query
        description: 'Search by Description, Id, etc.

          Note: Fields are case sensitive.

          '
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SecurityDetection'
        '403':
          $ref: '#/components/responses/Forbidden'
  /v2/security-detections:
    get:
      tags:
      - Security Detections
      summary: List Detections with Pagination
      description: Get a list of all security detections and incidents with pagination support.
      operationId: listDetectionsV2
      parameters:
      - $ref: '#/components/parameters/AccountContext'
      - $ref: '#/components/parameters/XRange'
      - $ref: '#/components/parameters/PaginationToken'
      - name: filter
        in: query
        description: 'OData filter parameter.

          Example: `*+like+IR19432+and+severity+eq+Low+and+detectionType+eq+Incident+and+status+eq+New+lookBackInDays+eq+1`

          Using lookBackInDays filter, you can filter data based on lastUpdatedTime. Min: 1, Max: 395 days.

          '
        schema:
          type: string
      - name: search
        in: query
        description: 'Search by Description, Id, etc.

          Note: Fields are case sensitive.

          '
        schema:
          type: string
      responses:
        '200':
          description: Successful response - all results returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetectionsResponse'
        '206':
          description: Partial content - more results available
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SecurityDetectionsResponse'
        '403':
          $ref: '#/components/responses/Forbidden'
  /security-detections/accounts/{accountId}:
    get:
      tags:
      - Security Detections
      summary: List Parent Customer Security Detections
      description: Get a list of all security detections and incidents with delivery receiptIds.
      operationId: listParentCustomerDetections
      parameters:
      - $ref: '#/components/parameters/AccountContext'
      - $ref: '#/components/parameters/Range'
      - $ref: '#/components/parameters/PaginationToken'
      - name: accountId
        in: path
        required: true
        description: The accountId.
        schema:
          type: integer
      - name: filter
        in: query
        description: 'OData filter parameter.

          Example: `*+like+IR19432+and+severity+eq+Low+and+detectionType+eq+Incident+and+status+eq+New`

          '
        schema:
          type: string
      - name: search
        in: query
        description: 'Search by Description, Id, etc.

          Note: Fields are case sensitive.

          '
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SecurityDetection'
        '403':
          $ref: '#/components/responses/Forbidden'
  /v2/security-detections/accounts/{accountId}:
    get:
      tags:
      - Security Detections
      summary: List Parent Customer Security Detections with Pagination
      description: Get a list of all security detections and incidents with delivery receiptIds.
      operationId: listParentCustomerDetectionsV2
      parameters:
      - $ref: '#/components/parameters/AccountContext'
      - $ref: '#/components/parameters/Range'
      - $ref: '#/components/parameters/PaginationToken'
      - name: accountId
        in: path
        required: true
        description: The accountId.
        schema:
          type: integer
      - name: filter
        in: query
        description: 'OData filter parameter.

          Example: `*+like+IR19432+and+severity+eq+Low+and+detectionType+eq+Incident+and+status+eq+New`

          '
        schema:
          type: string
      - name: search
        in: query
        description: 'Search by Description, Id, etc.

          Note: Fields are case sensitive.

          '
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SecurityDetection'
        '403':
          $ref: '#/components/responses/Forbidden'
components:
  schemas:
    Message:
      type: object
      properties:
        message:
          type: string
          description: Error or informational message
    SecurityDetectionsResponse:
      type: object
      properties:
        paging:
          type: object
          properties:
            after:
              type: string
              description: Next pagination token.
            before:
              type: string
              description: Previous pagination token.
        data:
          type: array
          description: List of SecurityDetection records.
          items:
            $ref: '#/components/schemas/SecurityDetection'
    DeliveryReceipt:
      type: object
      properties:
        receiptId:
          type: string
          description: The receiptId of notification sent.
        dateTime:
          type: string
          format: date-time
          description: The date and time notification sent.
        status:
          type: string
          description: The status of receipt.
    SecurityDetection:
      type: object
      properties:
        accountId:
          type: integer
          description: Customer Account identifier.
        detectionId:
          type: integer
          description: The unique identifier of the detection.
        description:
          type: string
          description: A description of the detection.
        categories:
          type: array
          description: Event categories that are associated with the detection.
          items:
            type: string
        severity:
          type: integer
          minimum: 1
          maximum: 10
          description: The severity of the detection.
        ticketStatus:
          type:
          - string
          - 'null'
          description: The ticket status of the detection.
        status:
          type: string
          description: The status of the detection.
          enum:
          - New
          - Open
          - In Progress
          - Pending Customer
          - Customer Responded
          - Completed
          - Closed
        detectionType:
          type: string
          description: The type of the detection.
          enum:
          - Detection
          - Incident
        eventCount:
          type: integer
          description: The number of events that are associated with the detection.
        startTime:
          type: string
          format: date-time
          description: The date and time the first event associated with this detection was received.
        lastUpdatedTime:
          type: string
          format: date-time
          description: The date and time the most recent event associated with this detection was received.
        ticketId:
          type:
          - string
          - 'null'
          description: The Id of the ticket created to manage detections tagged as incident.
        ticketUrl:
          type:
          - string
          - 'null'
          description: The URL of the ticket created in response to this detection.
        deliveryReceipts:
          type: array
          description: ReceiptIds generated for every notification delivery.
          items:
            $ref: '#/components/schemas/DeliveryReceipt'
  parameters:
    PaginationToken:
      name: x-pagination-token
      in: header
      description: Pagination token from previous response header.
      schema:
        type: string
    AccountContext:
      name: x-account-context
      in: header
      required: true
      description: Account context identifier
      schema:
        type: integer
      example: 4
    XRange:
      name: x-range
      in: header
      description: 'Range header for pagination. Example: `entities=0-10; max=10`'
      schema:
        type: string
    Range:
      name: Range
      in: header
      description: 'Range header for pagination. Example: `entities=0-10; max=10`'
      schema:
        type: string
  responses:
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Message'
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.armor.com/auth/authorize
          scopes: {}