Auth0 · Schema

GetGroupMembersResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
members array
next string A cursor to be used as the "from" query parameter for the next page of results.
View JSON Schema on GitHub

JSON Schema

auth0-getgroupmembersresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetGroupMembersResponseContent",
  "title": "GetGroupMembersResponseContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "members"
  ],
  "properties": {
    "members": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupMember"
      }
    },
    "next": {
      "type": "string",
      "description": "A cursor to be used as the \"from\" query parameter for the next page of results."
    }
  }
}