submissions
Creates, updates, deletes, gets or lists a submissions
resource.
Overview
Name | submissions |
Type | Resource |
Id | google.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:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
create | insert | projectsId | Creates 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. |
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.
Name | Datatype | Description |
---|---|---|
projectsId | string |
INSERT
examples
- create
- Manifest
Creates 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 INTO google.webrisk.submissions (
data__uri,
projectsId
)
SELECT
'{{ uri }}',
'{{ projectsId }}'
RETURNING
uri
;
# Description fields are for documentation purposes
- name: submissions
props:
- name: projectsId
value: string
description: Required parameter for the submissions resource.
- name: uri
value: string
description: >
Required. The URI that is being reported for malicious content to be analyzed.