> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging.auth0-mintlify.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Search resource servers

> Search resource servers using SCIM or Lucene filter syntax with low-latency, eventually consistent results. Use the parser parameter to specify "scim" or "lucene" syntax (default: "lucene"). This endpoint provides an alternative to the standard GET /resource-servers endpoint with better performance for complex queries.
Results may not reflect recent updates immediately.

The `signing_secret` field is not supported by this endpoint.


export const Scopes = ({scopes = []}) => {
  return <div>
      <div class="api-section-heading flex flex-col gap-y-4 w-full">
        <div class="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 class="api-section-heading-title flex-1 mb-0">Scopes</h4>
          <div class="flex items-center"></div>
        </div>
      </div>
      <div class="mt-4">
        <div class="space-y-4 whitespace-normal prose prose-sm prose-gray dark:prose-invert overflow-wrap-anywhere [&_*]:overflow-wrap-anywhere">
          <p class="whitespace-pre-line text-xs">
            {"Scopes define permissions and access levels for API requests and authentication tokens."}
          </p>
        </div>
      </div>
      <div class="flex font-mono text-sm group/param-head param-head break-all relative mt-6" id="scopes-scopes">
        <div class="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div class="flex items-center flex-wrap gap-2">
            <div class="absolute -top-1.5">
              <a href="#scopes-scopes" class="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="Navigate to header">
                ​
                <div class="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            {scopes.map((scope, index) => {
    return <span class="flex items-center px-2 py-0.5 rounded-md bg-gray-100/50 dark:bg-white/5 text-gray-600 dark:text-gray-200 font-medium break-all" style={{
      lineHeight: "1rem",
      fontSize: "0.75rem",
      fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace'
    }} data-component-part="field-info-pill" key={index}>
                  {scope}
                </span>;
  })}
          </div>
        </div>
      </div>
    </div>;
};

export const ApiReleaseLifecycle = ({releaseLifecycle = 'GA'}) => {
  const lifecycleMap = {
    ea: 'Early Access',
    ga: 'Generally Available',
    deprecated: 'Deprecated',
    planned: 'Planned',
    beta: 'Beta'
  };
  const LIFECYCLE_THEMES = {
    info: {
      light: {
        bg: 'lab(91.896% .077188 -6.94053)',
        text: 'lab(36.091% 25.9241 -68.0384)'
      },
      dark: {
        bg: 'lab(16.0426% 6.71726 -27.2409)',
        text: 'lab(72.6029% 4.08953 -41.9669)'
      }
    },
    secondary: {
      light: {
        bg: 'lab(90.8548% 11.3355 8.01476)',
        text: 'lab(47.5286% 56.4238 43.4706)'
      },
      dark: {
        bg: 'lab(16.3609% 37.191 25.6346)',
        text: 'lab(71.881% 41.5 29.4839)'
      }
    },
    danger: {
      light: {
        bg: 'lab(94.7916% -.0000298023 0)',
        text: 'lab(54.3656% 0 -.0000119209)'
      },
      dark: {
        bg: 'lab(13.232% 0 0)',
        text: 'lab(51.6164% 0 0)'
      }
    }
  };
  const LIFECYCLE_THEME_MAP = {
    ea: 'info',
    ga: 'info',
    beta: 'info',
    deprecated: 'secondary',
    planned: 'danger'
  };
  const lifecycle = releaseLifecycle.toLocaleLowerCase();
  const lifecycleText = lifecycleMap[lifecycle];
  if (!lifecycleText) {
    return null;
  }
  const theme = LIFECYCLE_THEMES[LIFECYCLE_THEME_MAP[lifecycle]];
  return <div>
      <div className="api-section-heading flex flex-col gap-y-4 w-full">
        <div className="flex items-baseline border-b pb-2.5 border-gray-100 dark:border-gray-800 w-full">
          <h4 className="api-section-heading-title flex-1 mb-0">
            Release Lifecycle
          </h4>
        </div>
      </div>
      <div className="flex font-mono text-sm group/param-head param-head break-all relative mt-2.5" id="releaselifecycle-lifecycle">
        <div className="flex-1 flex flex-col content-start py-0.5 mr-5">
          <div className="flex items-center flex-wrap gap-2">
            <div className="absolute -top-1.5">
              <a href="#releaselifecycle-lifecycle" className="-ml-10 flex items-center opacity-0 border-0 group-hover/param-head:opacity-100 focus:opacity-100 focus:outline-0 py-2 [.expandable-content_&]:-ml-[2.1rem] group/link" aria-label="Navigate to header">
                <div className="w-6 h-6 rounded-md flex items-center justify-center shadow-sm text-gray-400 dark:text-white/50 dark:bg-background-dark dark:brightness-[1.35] dark:ring-1 dark:hover:brightness-150 bg-white ring-1 ring-gray-400/30 dark:ring-gray-700/25 hover:ring-gray-400/60 dark:hover:ring-white/20 group-focus/link:border-2 group-focus/link:border-primary dark:group-focus/link:border-primary-light">
                  <svg xmlns="http://www.w3.org/2000/svg" fill="gray" height="12px" viewBox="0 0 576 512">
                    <path d="M0 256C0 167.6 71.6 96 160 96h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C98.1 144 48 194.1 48 256s50.1 112 112 112h72c13.3 0 24 10.7 24 24s-10.7 24-24 24H160C71.6 416 0 344.4 0 256zm576 0c0 88.4-71.6 160-160 160H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c61.9 0 112-50.1 112-112s-50.1-112-112-112H344c-13.3 0-24-10.7-24-24s10.7-24 24-24h72c88.4 0 160 71.6 160 160zM184 232H392c13.3 0 24 10.7 24 24s-10.7 24-24 24H184c-13.3 0-24-10.7-24-24s10.7-24 24-24z"></path>
                  </svg>
                </div>
              </a>
            </div>
            <span className="inline-flex items-center w-fit font-medium gap-1 py-0.5 px-2 rounded-md" style={{
    lineHeight: '1rem',
    fontSize: '0.75rem',
    fontFamily: 'var(--font-jetbrains-mono), ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace',
    backgroundColor: `light-dark(${theme.light.bg}, ${theme.dark.bg})`,
    color: `light-dark(${theme.light.text}, ${theme.dark.text})`,
    borderColor: `light-dark(color-mix(in oklab, ${theme.light.text} 25%, transparent), color-mix(in oklab, ${theme.dark.text} 25%, transparent))`
  }}>
              {lifecycleText}
            </span>
          </div>
        </div>
      </div>
    </div>;
};

<ApiReleaseLifecycle releaseLifecycle="EA" />

<Scopes scopes={["read:resource_servers"]} />


## OpenAPI

````yaml docs/oas/management/v2/management-api-oas.json GET /resource-servers/search
openapi: 3.1.0
info:
  title: Auth0 Management API
  description: Auth0 Management API v2.
  termsOfService: https://auth0.com/web-terms/
  contact:
    name: Auth0 Support
    url: https://support.auth0.com
  version: '2.0'
servers:
  - url: https://{tenantDomain}/api/v2
    variables:
      tenantDomain:
        default: '{TENANT}.auth0.com'
        description: Auth0 Tenant Domain
security:
  - bearerAuth: []
externalDocs:
  description: Auth0 Management API Documentation
  url: https://auth0.com/docs/api/management/v2/
paths:
  /resource-servers/search:
    get:
      tags:
        - resource-servers
      summary: Search resource servers
      description: >
        Search resource servers using SCIM or Lucene filter syntax with
        low-latency, eventually consistent results. Use the parser parameter to
        specify "scim" or "lucene" syntax (default: "lucene"). This endpoint
        provides an alternative to the standard GET /resource-servers endpoint
        with better performance for complex queries.

        Results may not reflect recent updates immediately.


        The `signing_secret` field is not supported by this endpoint.
      operationId: get_resource_servers_search
      parameters:
        - name: q
          in: query
          description: >-
            Filter expression in SCIM or Lucene syntax (depending on parser
            parameter). SCIM examples: `name eq "My API"`, `identifier sw
            "https://"`. SCIM operators: eq, ne, sw, ew, co, pr, gt, ge, lt, le,
            and, or. <br /><br /><b>Supported Fields</b>:<ul><li><i>id</i> -
            Filter by resource server ID</li><li><i>identifier</i> - Filter by
            resource server identifier</li><li><i>name</i> - Filter by resource
            server name</li><li><i>updated_at</i> - Filter by last update
            date</li></ul>Maximum 5 filter operations per query. Results are
            eventually consistent and may not reflect recent updates.
          schema:
            type: string
            maxLength: 1000
        - name: parser
          in: query
          description: >-
            Query parser to use for the filter expression. Use "scim" for SCIM
            filter syntax or "lucene" for Lucene query syntax (default).
          schema:
            $ref: '#/components/schemas/SearchParserEnum'
        - name: fields
          in: query
          description: >-
            Comma-separated list of fields to include or exclude in the
            response. Works with the include_fields parameter to control
            projection mode.
          schema:
            type: string
            maxLength: 1000
        - name: include_fields
          in: query
          description: >-
            Controls field projection mode. Set to true to include only fields
            specified in the fields parameter. Set to false to exclude fields
            specified in the fields parameter. Defaults to true if not
            specified.
          schema:
            type: boolean
        - name: take
          in: query
          description: >-
            Maximum number of results to return per page (1-100). Defaults to
            50.
          schema:
            type: integer
            minimum: 1
            maximum: 100
        - name: from
          in: query
          description: >-
            Cursor for the next page of results. Use the value from the next
            field in the previous response.
          schema:
            type: string
            maxLength: 1000
        - name: sort
          in: query
          description: >-
            Field name to sort results by in ascending order only. Defaults to
            insertion order (oldest first) if not provided.
          schema:
            $ref: '#/components/schemas/ResourceServerSortFieldEnum'
      responses:
        '200':
          description: Resource servers successfully retrieved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SearchResourceServersResponseContent'
        '400':
          description: >-
            Invalid request query string. The message will vary depending on the
            cause.
        '401':
          description: Invalid token.
          x-description-1: Client is not global.
          x-description-2: Invalid signature received for JSON Web Token validation.
        '403':
          description: 'Insufficient scope, expected any of: read:resource_servers.'
        '404':
          description: Not Found.
        '429':
          description: >-
            Too many requests. Check the X-RateLimit-Limit,
            X-RateLimit-Remaining and X-RateLimit-Reset headers.
        '500':
          description: An internal server error occurred
        '504':
          description: >-
            The search request timed out. Please simplify your query and try
            again.
      security:
        - bearerAuth: []
        - oAuth2ClientCredentials:
            - read:resource_servers
      x-codeSamples: []
components:
  schemas:
    SearchParserEnum:
      type: string
      enum:
        - scim
        - lucene
      description: >-
        Query parser to use for the filter expression. Use "scim" for SCIM
        filter syntax or "lucene" for Lucene query syntax (default).
    ResourceServerSortFieldEnum:
      type: string
      enum:
        - identifier
        - name
        - updated_at
      description: >-
        Field name to sort results by in ascending order only. Defaults to
        insertion order (oldest first) if not provided.
    SearchResourceServersResponseContent:
      type: object
      additionalProperties: false
      required:
        - resource_servers
      properties:
        resource_servers:
          type: array
          description: Array of resource server objects matching the search criteria.
          items:
            $ref: '#/components/schemas/ResourceServerSearchResponse'
        next:
          type: string
          description: >-
            Cursor for retrieving the next page of results. Omitted if there are
            no more results.
    ResourceServerSearchResponse:
      type: object
      additionalProperties: false
      properties:
        id:
          type: string
          description: ID of the API (resource server).
        name:
          type: string
          description: >-
            Friendly name for this resource server. Can not contain `<` or `>`
            characters.
        is_system:
          type: boolean
          description: Whether this is an Auth0 system API (true) or a custom API (false).
        identifier:
          type: string
          description: >-
            Unique identifier for the API used as the audience parameter on
            authorization calls. Can not be changed once set.
        scopes:
          type: array
          description: List of permissions (scopes) that this API uses.
          items:
            $ref: '#/components/schemas/ResourceServerScope'
        signing_alg:
          $ref: '#/components/schemas/SigningAlgorithmEnum'
        allow_offline_access:
          type: boolean
          description: >-
            Whether refresh tokens can be issued for this API (true) or not
            (false).
        allow_online_access:
          type: boolean
          description: >-
            Whether Online Refresh Tokens can be issued for this API (true) or
            not (false).
        allow_online_access_with_ephemeral_sessions:
          type: boolean
          description: >-
            Whether Online Refresh Tokens can be issued even when sessions are
            configured as ephemeral (true) or not (false).
        skip_consent_for_verifiable_first_party_clients:
          type: boolean
          description: >-
            Whether to skip user consent for applications flagged as first party
            (true) or not (false).
        token_lifetime:
          type: integer
          description: >-
            Expiration value (in seconds) for access tokens issued for this API
            from the token endpoint.
        token_lifetime_for_web:
          type: integer
          description: >-
            Expiration value (in seconds) for access tokens issued for this API
            via Implicit or Hybrid Flows. Cannot be greater than the
            `token_lifetime` value.
        enforce_policies:
          type: boolean
          description: >-
            Whether authorization polices are enforced (true) or unenforced
            (false).
        token_lifetime_for_anonymous_access_tokens:
          type: integer
          description: >-
            Expiration value (in seconds) for anonymous-session access tokens
            issued for this API.
          x-release-lifecycle: EA
        token_dialect:
          $ref: '#/components/schemas/ResourceServerTokenDialectResponseEnum'
        token_encryption:
          $ref: '#/components/schemas/ResourceServerTokenEncryption'
        consent_policy:
          $ref: '#/components/schemas/ResourceServerConsentPolicyEnum'
        authorization_details:
          type:
            - array
            - 'null'
          items: {}
        proof_of_possession:
          $ref: '#/components/schemas/ResourceServerProofOfPossession'
        subject_type_authorization:
          $ref: '#/components/schemas/ResourceServerSubjectTypeAuthorization'
        authorization_policy:
          $ref: '#/components/schemas/ResourceServerAuthorizationPolicy'
          x-release-lifecycle: EA
        client_id:
          type: string
          description: The client ID of the client that this resource server is linked to
          format: client-id
    ResourceServerScope:
      type: object
      additionalProperties: false
      required:
        - value
      properties:
        value:
          type: string
          description: Value of this scope.
          minLength: 1
          maxLength: 280
        description:
          type: string
          description: User-friendly description of this scope.
          maxLength: 500
    SigningAlgorithmEnum:
      type: string
      description: >-
        Algorithm used to sign JWTs. Can be `HS256` (default) or `RS256`.
        `PS256` available via addon.
      default: HS256
      enum:
        - HS256
        - RS256
        - RS512
        - PS256
    ResourceServerTokenDialectResponseEnum:
      type: string
      description: >-
        Dialect of access tokens that should be issued. `access_token` is a JWT
        containing standard Auth0 claims; `rfc9068_profile` is a JWT conforming
        to the IETF JWT Access Token Profile. `access_token_authz` and
        `rfc9068_profile_authz` additionally include RBAC permissions claims.
      enum:
        - access_token
        - access_token_authz
        - rfc9068_profile
        - rfc9068_profile_authz
    ResourceServerTokenEncryption:
      type:
        - object
        - 'null'
      additionalProperties: false
      required:
        - format
        - encryption_key
      properties:
        format:
          $ref: '#/components/schemas/ResourceServerTokenEncryptionFormatEnum'
        encryption_key:
          $ref: '#/components/schemas/ResourceServerTokenEncryptionKey'
    ResourceServerConsentPolicyEnum:
      type:
        - string
        - 'null'
      enum:
        - transactional-authorization-with-mfa
        - null
    ResourceServerProofOfPossession:
      type:
        - object
        - 'null'
      description: Proof-of-Possession configuration for access tokens
      additionalProperties: false
      required:
        - mechanism
        - required
      properties:
        mechanism:
          $ref: '#/components/schemas/ResourceServerProofOfPossessionMechanismEnum'
        required:
          type: boolean
          description: >-
            Whether the use of Proof-of-Possession is required for the resource
            server
        required_for:
          $ref: '#/components/schemas/ResourceServerProofOfPossessionRequiredForEnum'
    ResourceServerSubjectTypeAuthorization:
      type: object
      description: Defines application access permission for a resource server
      additionalProperties: false
      properties:
        user:
          $ref: '#/components/schemas/ResourceServerSubjectTypeAuthorizationUser'
        client:
          $ref: '#/components/schemas/ResourceServerSubjectTypeAuthorizationClient'
        anonymous_user:
          $ref: >-
            #/components/schemas/ResourceServerSubjectTypeAuthorizationAnonymousUser
          x-release-lifecycle: EA
    ResourceServerAuthorizationPolicy:
      type:
        - object
        - 'null'
      description: Authorization policy for the resource server.
      additionalProperties: false
      required:
        - policy_id
      x-release-lifecycle: EA
      properties:
        policy_id:
          type: string
          description: The ID of the authorization policy to apply.
          minLength: 1
          maxLength: 1024
    ResourceServerTokenEncryptionFormatEnum:
      description: Format of the encrypted JWT payload.
      enum:
        - compact-nested-jwe
    ResourceServerTokenEncryptionKey:
      type: object
      additionalProperties: false
      required:
        - alg
        - pem
      properties:
        name:
          type: string
          description: Name of the encryption key.
          minLength: 1
          maxLength: 128
        alg:
          $ref: '#/components/schemas/ResourceServerTokenEncryptionAlgorithmEnum'
        kid:
          type: string
          description: Key ID.
          minLength: 1
          maxLength: 128
        pem:
          type: string
          description: PEM-formatted public key. Must be JSON escaped.
          default: "-----BEGIN PUBLIC KEY-----\r\nMIIBIjANBg...\r\n-----END PUBLIC KEY-----\r\n"
          minLength: 1
          maxLength: 4096
    ResourceServerProofOfPossessionMechanismEnum:
      type: string
      description: Intended mechanism for Proof-of-Possession
      enum:
        - mtls
        - dpop
    ResourceServerProofOfPossessionRequiredForEnum:
      type: string
      description: Specifies which client types require Proof-of-Possession
      enum:
        - public_clients
        - all_clients
    ResourceServerSubjectTypeAuthorizationUser:
      type: object
      description: Access Permissions for user flows
      additionalProperties: true
      properties:
        policy:
          $ref: >-
            #/components/schemas/ResourceServerSubjectTypeAuthorizationUserPolicyEnum
    ResourceServerSubjectTypeAuthorizationClient:
      type: object
      description: Access Permissions for client flows
      additionalProperties: true
      properties:
        policy:
          $ref: >-
            #/components/schemas/ResourceServerSubjectTypeAuthorizationClientPolicyEnum
    ResourceServerSubjectTypeAuthorizationAnonymousUser:
      type: object
      description: Access Permissions for anonymous user flows
      additionalProperties: true
      x-release-lifecycle: EA
      properties:
        policy:
          $ref: >-
            #/components/schemas/ResourceServerSubjectTypeAuthorizationAnonymousUserPolicyEnum
    ResourceServerTokenEncryptionAlgorithmEnum:
      type: string
      description: Algorithm used to encrypt the token.
      enum:
        - RSA-OAEP-256
        - RSA-OAEP-384
        - RSA-OAEP-512
    ResourceServerSubjectTypeAuthorizationUserPolicyEnum:
      type: string
      description: Defines the user flows policy for the resource server
      enum:
        - allow_all
        - deny_all
        - require_client_grant
    ResourceServerSubjectTypeAuthorizationClientPolicyEnum:
      type: string
      description: Defines the client flows policy for the resource server
      enum:
        - deny_all
        - require_client_grant
    ResourceServerSubjectTypeAuthorizationAnonymousUserPolicyEnum:
      type: string
      description: Defines the anonymous user flows policy for the resource server
      enum:
        - deny_all
        - require_client_grant
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: jwt
    oAuth2ClientCredentials:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /oauth/token/
          x-form-parameters:
            audience: /api/v2/
          scopes:
            create:actions: Create Actions
            read:actions: Read Actions
            update:actions: Update Actions
            delete:actions: Delete Actions
            create:agents: Create Agents
            read:agents: Read Agents
            update:agents: Update Agents
            delete:agents: Delete Agents
            read:anomaly_blocks: Read Anomaly Blocks
            delete:anomaly_blocks: Delete Anomaly Blocks
            read:attack_protection: Read Attack Protection
            update:attack_protection: Update Attack Protection
            create:authentication_methods: Create Authentication Methods
            read:authentication_methods: Read Authentication Methods
            update:authentication_methods: Update Authentication Methods
            delete:authentication_methods: Delete Authentication Methods
            read:branding: Read Branding
            update:branding: Update Branding
            delete:branding: Delete Branding
            create:client_credentials: Create Client Credentials
            read:client_credentials: Read Client Credentials
            update:client_credentials: Update Client Credentials
            delete:client_credentials: Delete Client Credentials
            create:client_grants: Create Client Grants
            read:client_grants: Read Client Grants
            update:client_grants: Update Client Grants
            delete:client_grants: Delete Client Grants
            read:client_keys: Read Client Keys
            update:client_keys: Update Client Keys
            read:client_summary: Read Client Summary
            update:client_token_vault_privileged_access: Update Client Token Vault Privileged Access
            create:clients: Create Clients
            read:clients: Read Clients
            update:clients: Update Clients
            delete:clients: Delete Clients
            create:connection_profiles: Create Connection Profiles
            read:connection_profiles: Read Connection Profiles
            update:connection_profiles: Update Connection Profiles
            delete:connection_profiles: Delete Connection Profiles
            create:connections: Create Connections
            read:connections: Read Connections
            update:connections: Update Connections
            delete:connections: Delete Connections
            create:connections_keys: Create Connections Keys
            read:connections_keys: Read Connections Keys
            update:connections_keys: Update Connections Keys
            read:current_user: Read Current User
            delete:current_user: Delete Current User
            create:current_user_device_credentials: Create Current User Device Credentials
            delete:current_user_device_credentials: Delete Current User Device Credentials
            update:current_user_identities: Update Current User Identities
            update:current_user_metadata: Update Current User Metadata
            create:custom_domains: Create Custom Domains
            read:custom_domains: Read Custom Domains
            update:custom_domains: Update Custom Domains
            delete:custom_domains: Delete Custom Domains
            create:custom_signing_keys: Create Custom Signing Keys
            read:custom_signing_keys: Read Custom Signing Keys
            update:custom_signing_keys: Update Custom Signing Keys
            delete:custom_signing_keys: Delete Custom Signing Keys
            read:device_credentials: Read Device Credentials
            delete:device_credentials: Delete Device Credentials
            create:directory_provisionings: Create Directory Provisionings
            read:directory_provisionings: Read Directory Provisionings
            update:directory_provisionings: Update Directory Provisionings
            delete:directory_provisionings: Delete Directory Provisionings
            create:email_provider: Create Email Provider
            read:email_provider: Read Email Provider
            update:email_provider: Update Email Provider
            delete:email_provider: Delete Email Provider
            create:email_templates: Create Email Templates
            read:email_templates: Read Email Templates
            update:email_templates: Update Email Templates
            create:encryption_keys: Create Encryption Keys
            read:encryption_keys: Read Encryption Keys
            update:encryption_keys: Update Encryption Keys
            delete:encryption_keys: Delete Encryption Keys
            read:event_deliveries: Read Event Deliveries
            update:event_deliveries: Update Event Deliveries
            create:event_streams: Create Event Streams
            read:event_streams: Read Event Streams
            update:event_streams: Update Event Streams
            delete:event_streams: Delete Event Streams
            read:events: Read Events
            create:experimentation: Create Experimentation
            read:experimentation: Read Experimentation
            update:experimentation: Update Experimentation
            delete:experimentation: Delete Experimentation
            create:flows: Create Flows
            read:flows: Read Flows
            update:flows: Update Flows
            delete:flows: Delete Flows
            read:flows_executions: Read Flows Executions
            delete:flows_executions: Delete Flows Executions
            create:flows_vault_connections: Create Flows Vault Connections
            read:flows_vault_connections: Read Flows Vault Connections
            update:flows_vault_connections: Update Flows Vault Connections
            delete:flows_vault_connections: Delete Flows Vault Connections
            create:forms: Create Forms
            read:forms: Read Forms
            update:forms: Update Forms
            delete:forms: Delete Forms
            read:grants: Read Grants
            delete:grants: Delete Grants
            read:group_members: Read Group Members
            create:group_roles: Create Group Roles
            read:group_roles: Read Group Roles
            delete:group_roles: Delete Group Roles
            read:groups: Read Groups
            delete:groups: Delete Groups
            create:guardian_enrollment_tickets: Create Guardian Enrollment Tickets
            read:guardian_enrollments: Read Guardian Enrollments
            delete:guardian_enrollments: Delete Guardian Enrollments
            read:guardian_factors: Read Guardian Factors
            update:guardian_factors: Update Guardian Factors
            create:hooks: Create Hooks
            read:hooks: Read Hooks
            update:hooks: Update Hooks
            delete:hooks: Delete Hooks
            create:log_streams: Create Log Streams
            read:log_streams: Read Log Streams
            update:log_streams: Update Log Streams
            delete:log_streams: Delete Log Streams
            read:logs: Read Logs
            read:logs_users: Read Logs Users
            read:mfa_policies: Read Mfa Policies
            update:mfa_policies: Update Mfa Policies
            create:network_acls: Create Network Acls
            read:network_acls: Read Network Acls
            update:network_acls: Update Network Acls
            delete:network_acls: Delete Network Acls
            create:organization_client_grants: Create Organization Client Grants
            read:organization_client_grants: Read Organization Client Grants
            delete:organization_client_grants: Delete Organization Client Grants
            create:organization_connections: Create Organization Connections
            read:organization_connections: Read Organization Connections
            update:organization_connections: Update Organization Connections
            delete:organization_connections: Delete Organization Connections
            create:organization_discovery_domains: Create Organization Discovery Domains
            read:organization_discovery_domains: Read Organization Discovery Domains
            update:organization_discovery_domains: Update Organization Discovery Domains
            delete:organization_discovery_domains: Delete Organization Discovery Domains
            create:organization_group_roles: Create Organization Group Roles
            read:organization_group_roles: Read Organization Group Roles
            delete:organization_group_roles: Delete Organization Group Roles
            read:organization_groups: Read Organization Groups
            create:organization_invitations: Create Organization Invitations
            read:organization_invitations: Read Organization Invitations
            delete:organization_invitations: Delete Organization Invitations
            read:organization_member_effective_roles: Read Organization Member Effective Roles
            read:organization_member_role_source_groups: Read Organization Member Role Source Groups
            create:organization_member_roles: Create Organization Member Roles
            read:organization_member_roles: Read Organization Member Roles
            delete:organization_member_roles: Delete Organization Member Roles
            create:organization_members: Create Organization Members
            read:organization_members: Read Organization Members
            delete:organization_members: Delete Organization Members
            create:organizations: Create Organizations
            read:organizations: Read Organizations
            update:organizations: Update Organizations
            delete:organizations: Delete Organizations
            read:organizations_summary: Read Organizations Summary
            create:phone_providers: Create Phone Providers
            read:phone_providers: Read Phone Providers
            update:phone_providers: Update Phone Providers
            delete:phone_providers: Delete Phone Providers
            create:phone_templates: Create Phone Templates
            read:phone_templates: Read Phone Templates
            update:phone_templates: Update Phone Templates
            delete:phone_templates: Delete Phone Templates
            read:prompts: Read Prompts
            update:prompts: Update Prompts
            create:rate_limit_policies: Create Rate Limit Policies
            read:rate_limit_policies: Read Rate Limit Policies
            update:rate_limit_policies: Update Rate Limit Policies
            delete:rate_limit_policies: Delete Rate Limit Policies
            read:refresh_tokens: Read Refresh Tokens
            update:refresh_tokens: Update Refresh Tokens
            delete:refresh_tokens: Delete Refresh Tokens
            create:resource_servers: Create Resource Servers
            read:resource_servers: Read Resource Servers
            update:resource_servers: Update Resource Servers
            delete:resource_servers: Delete Resource Servers
            create:role_members: Create Role Members
            read:role_members: Read Role Members
            delete:role_members: Delete Role Members
            create:roles: Create Roles
            read:roles: Read Roles
            update:roles: Update Roles
            delete:roles: Delete Roles
            create:rules: Create Rules
            read:rules: Read Rules
            update:rules: Update Rules
            delete:rules: Delete Rules
            read:rules_configs: Read Rules Configs
            update:rules_configs: Update Rules Configs
            delete:rules_configs: Delete Rules Configs
            create:scim_config: Create Scim Config
            read:scim_config: Read Scim Config
            update:scim_config: Update Scim Config
            delete:scim_config: Delete Scim Config
            create:scim_token: Create Scim Token
            read:scim_token: Read Scim Token
            delete:scim_token: Delete Scim Token
            read:self_service_profile_custom_texts: Read Self Service Profile Custom Texts
            update:self_service_profile_custom_texts: Update Self Service Profile Custom Texts
            create:self_service_profiles: Create Self Service Profiles
            read:self_service_profiles: Read Self Service Profiles
            update:self_service_profiles: Update Self Service Profiles
            delete:self_service_profiles: Delete Self Service Profiles
            read:sessions: Read Sessions
            update:sessions: Update Sessions
            delete:sessions: Delete Sessions
            create:signing_keys: Create Signing Keys
            read:signing_keys: Read Signing Keys
            update:signing_keys: Update Signing Keys
            create:sso_access_tickets: Create Sso Access Tickets
            delete:sso_access_tickets: Delete Sso Access Tickets
            read:stats: Read Stats
            read:tenant_settings: Read Tenant Settings
            update:tenant_settings: Update Tenant Settings
            create:token_exchange_profiles: Create Token Exchange Profiles
            read:token_exchange_profiles: Read Token Exchange Profiles
            update:token_exchange_profiles: Update Token Exchange Profiles
            delete:token_exchange_profiles: Delete Token Exchange Profiles
            create:user_attribute_profiles: Create User Attribute Profiles
            read:user_attribute_profiles: Read User Attribute Profiles
            update:user_attribute_profiles: Update User Attribute Profiles
            delete:user_attribute_profiles: Delete User Attribute Profiles
            read:user_effective_permissions: Read User Effective Permissions
            read:user_effective_roles: Read User Effective Roles
            read:user_idp_tokens: Read User Idp Tokens
            read:user_permission_source_roles: Read User Permission Source Roles
            read:user_role_source_groups: Read User Role Source Groups
            create:user_tickets: Create User Tickets
            create:users: Create Users
            read:users: Read Users
            update:users: Update Users
            delete:users: Delete Users
            update:users_app_metadata: Update Users App Metadata
            create:vdcs_templates: Create Vdcs Templates
            read:vdcs_templates: Read Vdcs Templates
            update:vdcs_templates: Update Vdcs Templates
            delete:vdcs_templates: Delete Vdcs Templates
            create:organization_clients: Create Organization Client Associations
            read:organization_clients: Read Organization Client Associations
            update:organization_clients: Update Organization Client Associations
            delete:organization_clients: Delete Organization Client Associations
            read:organization_templates: Read Organization Templates
            create:network_acl_keys: Create Network ACL Keys
            read:network_acl_keys: Read Network ACL Keys
            delete:network_acl_keys: Delete Network ACL Keys

````