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

# Process Alertmanager webhook

> Receives and processes alerts from Alertmanager



## OpenAPI

````yaml /api-spec.json post /core/alerts/webhook
openapi: 3.0.0
info:
  contact:
    name: Acusight API Support
  description: >-
    Acusight platform API - custom endpoints + Portainer proxy routes for edge
    AI deployments
  title: Acusight API
  version: 1.0.0
servers:
  - url: https://acusight.io/api
    description: AcuSight Cloud (hosted)
security: []
tags:
  - name: Devices & provisioning
    description: Register, provision, and manage edge devices and their agents.
  - name: Virtual devices
    description: Create and drive simulated devices for testing and demos.
  - name: Alerts & telemetry
    description: Model alerts, alert rules, and product telemetry.
  - name: Organization
    description: Organization-level settings.
  - name: Datasets & data
    description: Projects, batches, datasets, images, annotations, and drift.
  - name: Models & training
    description: Model registry, training jobs, exports, and inference.
  - name: Pipeline data
    description: Detection time-series and aggregated pipeline analytics.
paths:
  /core/alerts/webhook:
    post:
      tags:
        - Alerts & telemetry
      summary: Process Alertmanager webhook
      description: Receives and processes alerts from Alertmanager
      requestBody:
        $ref: '#/components/requestBodies/handlers.AlertmanagerWebhook'
      responses:
        '200':
          description: Webhook processed successfully
          content:
            '*/*':
              schema:
                additionalProperties:
                  type: string
                type: object
        '400':
          description: Invalid request
          content:
            '*/*':
              schema:
                additionalProperties:
                  type: string
                type: object
        '500':
          description: Internal server error
          content:
            '*/*':
              schema:
                additionalProperties:
                  type: string
                type: object
      security:
        - BearerAuth: []
components:
  requestBodies:
    handlers.AlertmanagerWebhook:
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/handlers.AlertmanagerWebhook'
      description: Alertmanager webhook payload
      required: true
  schemas:
    handlers.AlertmanagerWebhook:
      properties:
        alerts:
          items:
            $ref: '#/components/schemas/handlers.Alert'
          type: array
        groupKey:
          type: string
        receiver:
          type: string
        status:
          type: string
        version:
          type: string
      type: object
    handlers.Alert:
      properties:
        annotations:
          additionalProperties:
            type: string
          type: object
        endsAt:
          type: string
        fingerprint:
          type: string
        generatorURL:
          type: string
        labels:
          additionalProperties:
            type: string
          type: object
        startsAt:
          type: string
        status:
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        JWT access token. Paste the token only; the Bearer prefix is added
        automatically.

````