Skip to main content

relatedaccountgroups

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

Overview

Namerelatedaccountgroups
TypeResource
Idgoogle.recaptchaenterprise.relatedaccountgroups

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringRequired. Identifier. The resource name for the related account group in the format projects/{project}/relatedaccountgroups/{related_account_group}.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectprojectsIdpageSize, pageTokenList groups of related accounts.

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
pageSizeinteger (int32)
pageTokenstring

SELECT examples

List groups of related accounts.

SELECT
name
FROM google.recaptchaenterprise.relatedaccountgroups
WHERE projectsId = '{{ projectsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';