Alerts & Recommendations
Overview
The Alerts and Recommendations API endpoint provides capability to list all the alerts and recommendations for the advertiser.
Usage: To list all the alerts and recommendations for the advertiser
To understand details about ‘Request Header' or 'Authorization’, please refer to the Authorization Guide
Retrieve today’s near-real time metrics and campaign cap-out insights
Description: You can retrieve following alerts and recommendations at advertiser/campaign level on the day of request: "Ad Spend", "Remaining Budget", "Course of action"
End Point: /api/v1/alerts
HTTP Method: GET
Query Parameters
Parameter | Description | Type | Required | Possible Values |
---|---|---|---|---|
advertiserId | ID of the advertiser | Integer | Y | Unique numeric identifier |
Sample Request
Response
Element | Description | Type |
---|---|---|
campaignId | ID of the campaign | Integer |
adGroupId | ID of the ad group that is part of the campaign | Integer |
alertMessage | Thread of alerts and recommendations | String |
createdOn | The date the alerts and recommendations were created on | Integer |
alertType | Type of alert | String |
Sample Response
[
{
"campaignId": 0,
"adGroupId": 0,
"alertMessage": "Ad group is running our of total budget. 28.51% total budget remaining. Keep serving ads by increasing the budget of your adGroup",
"createdOn": "2019-09-18T20:56:11.000z",
"alertType": "Budget",
}
]
HTTP Status Code
Status Code | Description | Possible Error Messages |
---|---|---|
400 | Bad request | advertiserId not found in request |
403 | Forbidden | User not Authenticated |
429 | Too Many Requests | <Exception Message> |
500 | Internal server error | There was an error processing the request |