Skip to main content

submissions

Creates, updates, deletes, gets or lists a submissions resource.

Overview

Namesubmissions
TypeResource
Idgoogle.webrisk.submissions

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
createinsertprojectsIdCreates a Submission of a URI suspected of containing phishing content for review. If the review confirms malicious phishing content, Google adds the site to Google's Social Engineering lists to help protect users. Only allowlisted projects can use this method during Early Access. To obtain access, contact Sales or your customer engineer.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
projectsIdstring

INSERT examples

Creates a Submission of a URI suspected of containing phishing content for review. If the review confirms malicious phishing content, Google adds the site to Google's Social Engineering lists to help protect users. Only allowlisted projects can use this method during Early Access. To obtain access, contact Sales or your customer engineer.

INSERT INTO google.webrisk.submissions (
data__uri,
projectsId
)
SELECT
'{{ uri }}',
'{{ projectsId }}'
RETURNING
uri
;