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 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.
| Name | Datatype | Description |
|---|---|---|
projectsId | string |
INSERT examples
- create
- Manifest
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
;
# Description fields are for documentation purposes
- name: submissions
props:
- name: projectsId
value: "{{ projectsId }}"
description: Required parameter for the submissions resource.
- name: uri
value: "{{ uri }}"
description: |
Required. The URI that is being reported for malicious content to be analyzed.