Auth0 · Schema

ListUserAuthenticationMethodsOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
start number Index of the starting record. Derived from the page and per_page parameters.
limit number Maximum amount of records to return.
total number Total number of pageable records.
authenticators array The paginated authentication methods. Returned in this structure when include_totals is true.
View JSON Schema on GitHub

JSON Schema

auth0-listuserauthenticationmethodsoffsetpaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUserAuthenticationMethodsOffsetPaginatedResponseContent",
  "title": "ListUserAuthenticationMethodsOffsetPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "start": {
      "type": "number",
      "description": "Index of the starting record. Derived from the page and per_page parameters."
    },
    "limit": {
      "type": "number",
      "description": "Maximum amount of records to return."
    },
    "total": {
      "type": "number",
      "description": "Total number of pageable records."
    },
    "authenticators": {
      "type": "array",
      "description": "The paginated authentication methods. Returned in this structure when include_totals is true.",
      "items": {
        "$ref": "#/components/schemas/UserAuthenticationMethod"
      }
    }
  }
}