# /systems/{id}/alerts/silences - Create a silence for a system alert **POST /systems/{id}/alerts/silences** Creates an Alertmanager silence for a specific active alert on the target system. The request identifies the live alert by fingerprint. The backend resolves the alert, builds the silence matchers server-side, and always uses the system's authoritative `system_key`. If `end_at` is provided it takes precedence over `duration_minutes`. Requires `manage:systems` permission. ## Servers - Backend API server (port 8080): https://api.your-domain.com/api (Backend API server (port 8080)) - Collect API server (port 8081): https://collect.your-domain.com/api (Collect API server (port 8081)) ## Authentication methods - Bearer auth ## Parameters ### Path parameters - **id** (string) System ID (database UUID) ### Body: application/json (object) - **fingerprint** (string) Fingerprint of the active alert to silence - **comment** (string) Optional silence comment. Defaults to a system-generated value when empty. - **duration_minutes** (integer) Optional silence duration in minutes. Defaults to 60 when omitted. Ignored when end_at is set. - **end_at** (string(date-time)) Optional explicit end time (RFC3339). Takes precedence over duration_minutes. ## Responses ### 200 Alert silence created successfully #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object) ### 400 Bad request - validation error #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) ### 401 Unauthorized - invalid or missing token #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 403 Forbidden - insufficient permissions #### Body: application/json (object) - **code** (integer) - **message** (string) - **data** (object | null) ### 404 Resource not found #### Body: application/json (object) - **code** (integer) HTTP error code - **message** (string) Error message - **data** (object) [Powered by Bump.sh](https://bump.sh)