[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-08-21 UTC."],[[["\u003cp\u003eAlerts provide critical information regarding your AdSense account, categorized by severity levels such as INFO, WARNING, and SEVERE.\u003c/p\u003e\n"],["\u003cp\u003eEach alert includes a descriptive message and a machine-readable type for easier identification and management.\u003c/p\u003e\n"],["\u003cp\u003eYou can access and manage alerts through the provided API methods, such as listing all alerts associated with your account.\u003c/p\u003e\n"],["\u003cp\u003eAlert severity is indicated by an enum value and can range from unspecified to severe, allowing you to prioritize based on the urgency of the issue.\u003c/p\u003e\n"],["\u003cp\u003eAlerts are represented as JSON objects containing key information like name, severity, message, and type for easy integration into your systems.\u003c/p\u003e\n"]]],["Alerts are represented as resources with fields: `name` (resource identifier), `severity` (enum: `INFO`, `WARNING`, `SEVERE`), `message` (localized HTML message), and `type` (machine-readable identifier). The resource name follows the format: `accounts/{account}/alerts/{alert}`. Alert severities range from unspecified to severe. The `list` method is used to retrieve all alerts for a given account.\n"],null,["# REST Resource: accounts.alerts\n\n- [Resource: Alert](#Alert)\n - [JSON representation](#Alert.SCHEMA_REPRESENTATION)\n- [Severity](#Severity)\n- [Methods](#METHODS_SUMMARY)\n\nResource: Alert\n---------------\n\nRepresentation of an alert.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"severity\": enum (/adsense/management/reference/rest/v2/accounts.alerts#Severity), \"message\": string, \"type\": string } ``` |\n\n| Fields ||\n|------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `name` | `string` Output only. Resource name of the alert. Format: accounts/{account}/alerts/{alert} |\n| `severity` | `enum (`[Severity](/adsense/management/reference/rest/v2/accounts.alerts#Severity)`)` Output only. Severity of this alert. |\n| `message` | `string` Output only. The localized alert message. This may contain HTML markup, such as phrase elements or links. |\n| `type` | `string` Output only. Type of alert. This identifies the broad type of this alert, and provides a stable machine-readable identifier that will not be translated. For example, \"payment-hold\". |\n\nSeverity\n--------\n\nSeverity of an alert.\n\n| Enums ||\n|------------------------|-----------------------|\n| `SEVERITY_UNSPECIFIED` | Unspecified severity. |\n| `INFO` | Info. |\n| `WARNING` | Warning. |\n| `SEVERE` | Severe. |\n\n| Methods ------- ||\n|------------------------------------------------------------------------|-----------------------------------------------|\n| ### [list](/adsense/management/reference/rest/v2/accounts.alerts/list) | Lists all the alerts available in an account. |"]]