action googleapis_abusiveexperiencereport_sites_get { label: "abusiveexperiencereport.sites.get" description: "Gets a site's Abusive Experience Report summary." provider: googleapis method: GET path: "/v1/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" description: "Response message for GetSiteSummary." properties: { abusiveStatus: { type: "string" description: "The site's Abusive Experience Report status." enum: ["UNKNOWN", "PASSING", "FAILING"] } enforcementTime: { type: "string" format: "google-datetime" description: "The time at which [enforcement](https://support.google.com/webtools/answer/7538608) against the site began or will begin. Not set when the filter_status is OFF." } filterStatus: { type: "string" description: "The site's [enforcement status](https://support.google.com/webtools/answer/7538608)." enum: ["UNKNOWN", "ON", "OFF", "PAUSED", "PENDING"] } lastChangeTime: { type: "string" format: "google-datetime" description: "The time at which the site's status last changed." } reportUrl: { type: "string" description: "A link to the full Abusive Experience Report for the site. Not set in ViolatingSitesResponse. Note that you must complete the [Search Console verification process](https://support.google.com/webmasters/answer/9008080) for the site before you can access the full report." } reviewedSite: { type: "string" description: "The name of the reviewed site, e.g. `google.com`." } underReview: { type: "boolean" description: "Whether the site is currently under review." } } } }