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

# Inbound webhook trigger (public, no auth)



## OpenAPI

````yaml /openapi.yaml post /workflows/webhook/{token}
openapi: 3.0.3
info:
  title: Hill90 API
  description: Hill90 platform API — agent management and lifecycle operations.
  version: 0.1.0
servers:
  - url: /
    description: Relative (behind Traefik reverse proxy)
security: []
paths:
  /workflows/webhook/{token}:
    post:
      summary: Inbound webhook trigger (public, no auth)
      parameters:
        - name: token
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Workflow triggered
        '404':
          description: Webhook not found
        '409':
          description: Agent not running
      security: []

````