SuperTokens · Schema

ListUsersResponse

AuthenticationOpen SourceSession ManagementSocial LoginPasswordlessIdentityAuthorizationMulti-TenancyNode.jsSelf-Hosted

Properties

Name Type Description
status string
users array
nextPaginationToken string
View JSON Schema on GitHub

JSON Schema

supertokens-listusersresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUsersResponse",
  "title": "ListUsersResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string"
    },
    "users": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/User"
      }
    },
    "nextPaginationToken": {
      "type": "string"
    }
  }
}