Skip to main content

assessments

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

Overview

Nameassessments
TypeResource
Idgoogle.recaptchaenterprise.assessments

Fields

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

Methods

NameAccessible byRequired ParamsDescription
createINSERTprojectsIdCreates an Assessment of the likelihood an event is legitimate.
annotateEXECassessmentsId, projectsIdAnnotates a previously created Assessment to provide additional information on whether the event turned out to be authentic or fraudulent.

INSERT example

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

/*+ create */
INSERT INTO google.recaptchaenterprise.assessments (
projectsId,
assessmentEnvironment,
accountVerification,
event,
privatePasswordLeakVerification
)
SELECT
'{{ projectsId }}',
'{{ assessmentEnvironment }}',
'{{ accountVerification }}',
'{{ event }}',
'{{ privatePasswordLeakVerification }}'
;