Skip to main content

submissions

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

Overview

Namesubmissions
TypeResource
Idgoogle.webrisk.submissions

Fields

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTprojectsIdCreates a Submission of a URI suspected of containing phishing content to be reviewed. If the result verifies the existence of malicious phishing content, the site will be added to the Google's Social Engineering lists in order to protect users that could get exposed to this threat in the future. Only allowlisted projects can use this method during Early Access. Please reach out to Sales or your customer engineer to obtain access.

INSERT example

Use the following StackQL query and manifest file to create a new submissions resource.

/*+ create */
INSERT INTO google.webrisk.submissions (
projectsId,
uri
)
SELECT
'{{ projectsId }}',
'{{ uri }}'
;