action sendgrid_get_alerts_alert_id { label: "Retrieve a specific alert" description: "**This endpoint allows you to retrieve a specific alert.**\n\nAlerts allow you to specify an email address to receive notifications regarding your email usage or statistics. \n* Usage alerts allow you to set the threshold at which an alert will be sent.\n* Stats notifications allow you to set how frequently you would like to receive email statistics reports. For example, \"daily\", \"weekly\", or \"monthly\".\n\nFor more information about alerts, please see our [Alerts documentation](https://sendgrid.com/docs/ui/account-and-settings/alerts/)." provider: sendgrid method: GET path: "/alerts/{alert_id}" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["created_at", "email_to", "id", "type", "updated_at"] properties: { created_at: { type: "integer" description: "A Unix timestamp indicating when the alert was created." } email_to: { type: "string" description: "The email address that the alert will be sent to." } frequency: { type: "string" description: "If the alert is of type stats_notification, this indicates how frequently the stats notifications will be sent. For example: \"daily\", \"weekly\", or \"monthly\"." } id: { type: "integer" description: "The ID of the alert." } percentage: { type: "integer" description: "If the alert is of type usage_limit, this indicates the percentage of email usage that must be reached before the alert will be sent." } type: { type: "string" description: "The type of alert." enum: ["usage_alert", "stats_notification"] } updated_at: { type: "integer" description: "A Unix timestamp indicating when the alert was last modified." } } } }