Get placement reports
Fetch reports for the observed placement domains in the given period.
Available on:
Path parameters
-
ID of an account
Query parameters
-
Observed period for the report
Values are
TODAY
,YESTERDAY
,THIS_WEEK
,LAST_WEEK
,THIS_MONTH
,LAST_MONTH
,LAST_30_DAYS
, orLAST_3_MONTHS
. -
sort string
Sort the placements by a specified parameter. Use '-' prefix to indicate a descending sort. Default: '-total_clicks'.
Values are
last_seen
,first_seen
,total_clicks
,invalid_clicks
, orflagged_clicks
. -
offset number
Paginating parameter. Offset the result by a specified number. Default: 0.
-
limit number
Paginating parameter. Limit the number of result by a specified number. Max: 100. Default: 50.
-
query string
Search placements by given query
-
placements[] array[string]
Fetch all placement reports for the given array of placement domains.
-
status string
Status of a placement
Values are
NORMAL
,SUSPICIOUS
, orBLOCKED
.
curl \
-X GET https://api.clickguard.com/accounts/{account_id}/reports/placements?period=TODAY \
-H "X-API-KEY: $API_KEY"
"{\n \"placement\": \"youtube.com\",\n \"status\": \"NORMAL\",\n \"total_clicks\": 52,\n \"normal_clicks\": 13,\n \"invalid_clicks\": 24,\n \"suspicious_clicks\": 10,\n \"flagged_clicks\": 5,\n \"first_seen\": \"2020-10-27T16:17:09.974Z\",\n \"last_seen\": \"2021-03-02T16:22:34.578Z\",\n \"last_campaign_id\": \"9263669976\",\n \"last_device_id\": \"q1w2e3r4t5y6\",\n \"last_country\": \"Australia\",\n \"last_country_code\": \"AU\",\n \"last_region\": \"Sunshine Coast (Queensland)\",\n \"last_city\": \"Sunshine Coast\"\n}"
[
{
"placement": "string",
"status": "string",
"total_clicks": 42.0,
"normal_clicks": 42.0,
"suspicious_clicks": 42.0,
"flagged_clicks": 42.0,
"invalid_clicks": 42.0,
"first_seen": "2024-05-04T09:42:00+00:00",
"last_seen": "2024-05-04T09:42:00+00:00",
"last_campaign_id": "string",
"last_device_id": "string",
"last_country": "string",
"last_city": "string"
}
]