Skip to main content
PUT
https://{tenantDomain}/api/v2
/
connections
/
{id}
/
directory-provisioning
/
synchronized-groups
Create or replace synchronized group selections for a directory provisioning configuration
curl --request PUT \
  --url https://{tenantDomain}/api/v2/connections/{id}/directory-provisioning/synchronized-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "groups": [
    {
      "id": "<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 create or replace synchronized groups for

Body

groups
object[]
required

Array of Google Workspace Directory group objects to synchronize.

Response

No Content