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

# Dispatch Agent

> Dispatch an alert to a specific registered agent.

Bypasses trigger matching — sends the full enriched alert payload to
the specified agent regardless of its trigger criteria. Useful for
manual investigation or re-running an agent against a specific alert.



## OpenAPI

````yaml POST /v1/alerts/{alert_uuid}/dispatch-agent
openapi: 3.1.0
info:
  title: Calseta
  description: SOC data platform for security agent consumption
  version: dev
servers: []
security: []
paths:
  /v1/alerts/{alert_uuid}/dispatch-agent:
    post:
      tags:
        - alerts
      summary: Dispatch Agent
      description: |-
        Dispatch an alert to a specific registered agent.

        Bypasses trigger matching — sends the full enriched alert payload to
        the specified agent regardless of its trigger criteria. Useful for
        manual investigation or re-running an agent against a specific alert.
      operationId: dispatch_agent_v1_alerts__alert_uuid__dispatch_agent_post
      parameters:
        - name: alert_uuid
          in: path
          required: true
          schema:
            type: string
            format: uuid
            title: Alert Uuid
        - name: agent_uuid
          in: query
          required: true
          schema:
            type: string
            format: uuid
            description: UUID of the agent to dispatch to
            title: Agent Uuid
          description: UUID of the agent to dispatch to
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponse_dict_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DataResponse_dict_:
      properties:
        data:
          additionalProperties: true
          type: object
          title: Data
        meta:
          additionalProperties: true
          type: object
          title: Meta
      type: object
      required:
        - data
      title: DataResponse[dict]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````