Graphiant Parentalertlist API

The Parentalertlist API from Graphiant — 1 operation(s) for parentalertlist.

Operations 1

POST /v2/parentalertlist

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/graphiant-parentalertlist-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

graphiant-parentalertlist-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Parentalertlist API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Parentalertlist
paths:
  /v2/parentalertlist:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v2ParentalertlistPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v2ParentalertlistPostResponse'
      tags:
      - Parentalertlist
components:
  schemas:
    v2ParentalertlistPostRequest:
      type: object
      properties:
        timeWindow:
          $ref: '#/components/schemas/alertserviceTimeWindow'
      additionalProperties: false
    alertserviceTimeWindow:
      type: object
      properties:
        bucketSizeSec:
          type: integer
          format: int32
          example: 123
          minimum: 0
        oldTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        recentTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
      additionalProperties: false
    v2ParentalertlistPostResponse:
      type: object
      properties:
        alertList:
          type: array
          items:
            $ref: '#/components/schemas/alertserviceAlertRecord'
      additionalProperties: false
    alertserviceAlertRecord:
      type: object
      properties:
        acknowledgedList:
          type: array
          items:
            type: string
            example: example string
            description: List of users that have acknowledged the alert
        acknowledgementReason:
          type: string
          example: example string
          description: Reason put by users when acknowledged
        alertBody:
          type: string
          example: example string
          description: Latest event(s) behind the alert (required)
        alertId:
          type: string
          example: example string
          description: Unique id of the alert (required)
        allowListed:
          type: boolean
          example: true
          description: whether entity in alert is put in allowlist/excludelist, disabling alert (required)
        childrenAlertList:
          $ref: '#/components/schemas/alertserviceChildrenAlertListResponse'
        descendantPresent:
          type: boolean
          example: true
          description: Whether or not descendants are present (required)
        deviceId:
          type: string
          example: example string
          description: Internal device id to navigate to troubleshooting
        endTime:
          type: integer
          format: int64
          example: 12345678910
          minimum: 0
          description: When this alert was last seen as a continuation (required)
        enterpriseId:
          type: string
          example: example string
          description: Internal enterprise id to navigate to troubleshooting (required)
        entity:
          type: string
          example: example string
          description: Entity that triggered the alert. Edge, core, etc. (required)
        interfaceName:
          type: string
          example: example string
          description: Device Interface Name
        muteListed:
          type: boolean
          example: true
          description: whether entity in alert is put in notification mutelist (required)
        notificationCreated:
          type: boolean
          example: true
          description: whether notification exists for this rule (required)
        occurrences:
          type: integer
          format: int64
          example: 12345678910
          minimum: 0
          description: Number of times alert was raised as a continuation (required)
        peerDeviceId:
          type: string
          example: example string
          description: peer device id
        peerInterfaceName:
          type: string
          example: example string
          description: Peer Interface Name
        peerName:
          type: string
          example: example string
          description: Peer Name
        plane:
          type: string
          example: ENUM_VALUE
          description: Plane of the rule generating the alert (required)
        reason:
          type: string
          example: example string
          description: Reason why alert was generated (required)
        recommendation:
          type: string
          example: example string
          description: Recommendation to recover from alert (required)
        ruleId:
          type: string
          example: example string
          description: Unique id of the rule generating the alert (required)
        severity:
          type: string
          example: Low
          description: Severity of the rule behind the alert (required)
        siteId:
          type: string
          example: example string
          description: Internal site id to navigate to troubleshooting
        startTime:
          type: integer
          format: int64
          example: 12345678910
          minimum: 0
          description: When this alert was first triggered (required)
        status:
          type: string
          example: ENUM_VALUE
          description: Status of the alert whether active or inactive (required)
        troubleshootingDisabledReason:
          type: string
          example: example string
          description: Reason to not navigate to troubleshooting
        troubleshootingEnabled:
          type: boolean
          example: true
          description: Navigate or not navigate to troubleshooting dashboard (required)
        tunnelInterfaceName:
          type: string
          example: example string
          description: Tunnel Interface Name
        type:
          type: string
          example: example string
          description: Type of alert (required)
      additionalProperties: false
    googleProtobufTimestamp:
      type: object
      properties:
        nanos:
          type: integer
          format: int32
          example: 123
        seconds:
          type: integer
          format: int64
          example: 1234567891011
      additionalProperties: false
    alertserviceChildrenAlertListResponse:
      type: object
      properties:
        alertList:
          type: array
          items:
            $ref: '#/components/schemas/alertserviceAlertRecord'
      additionalProperties: false
  securitySchemes:
    jwtAuth:
      type: apiKey
      in: header
      name: authorization
      description: Use `Bearer <token>`