action signl4_post_alerts_alert_id_annotate { label: "Annotate Alert" description: "Annotates an alert by given Annotation Info." provider: signl4 method: POST path: "/alerts/{alertId}/annotate" encoding: json input: { type: "object" properties: { alertId: { type: "string" } annotationType: { type: "integer" format: "int32" } id: { type: "string" } text: { type: "string" } timestamp: { type: "string" format: "date-time" } userId: { type: "string" } } required: ["alertId"] additionalProperties: false } output: { type: "object" properties: { annotationType: { type: "integer" format: "int32" } id: { type: "string" } text: { type: "string" } timestamp: { type: "string" format: "date-time" } userId: { type: "string" } } additionalProperties: false } }