Auth0 · Schema

ListSynchronizedGroupsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
groups array 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.
View JSON Schema on GitHub

JSON Schema

auth0-listsynchronizedgroupsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListSynchronizedGroupsResponseContent",
  "title": "ListSynchronizedGroupsResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "groups"
  ],
  "properties": {
    "groups": {
      "type": "array",
      "description": "Array of Google Workspace group ids configured for synchronization.",
      "items": {
        "$ref": "#/components/schemas/SynchronizedGroupPayload"
      }
    },
    "next": {
      "type": "string",
      "description": "The cursor to be used as the \"from\" query parameter for the next page of results."
    }
  }
}