Skip to main content
GET
https://{tenantDomain}/api/v2
/
connections
/
{id}
/
directory-provisioning
/
synchronized-groups
Get synchronized groups for a directory provisioning configuration
curl --request GET \
  --url https://{tenantDomain}/api/v2/connections/{id}/directory-provisioning/synchronized-groups \
  --header 'Authorization: Bearer <token>'
{
  "groups": [
    {
      "id": "<string>"
    }
  ],
  "next": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The id of the connection to list synchronized groups for.

Query Parameters

from
string

Optional Id from which to start selection.

take
integer

Number of results per page. Defaults to 50.

Required range: 1 <= x <= 100

Response

The connection's synchronized groups. See Response Schemas for schema.

groups
object[]
required

Array of Google Workspace group ids configured for synchronization.

next
string

The cursor to be used as the "from" query parameter for the next page of results.