Function getOAuthClients

  • Retrieve all OAuth clients.

    Parameters

    • query: {
          filter?: string;
          limit?: number;
          next?: string;
          prev?: string;
          sort?: string;
          totalResults?: boolean;
      }

      an object with query parameters

      • Optionalfilter?: string

        The filter query that should be used to filter the list of oauth clients. The filter syntax is defined in RFC 7644. Valid attributes for filtering are clientId, clientName, appType, and tenantId.

      • Optionallimit?: number
      • Optionalnext?: string
      • Optionalprev?: string
      • Optionalsort?: string
      • OptionaltotalResults?: boolean
    • Optionaloptions: ApiCallOptions

    Returns Promise<GetOAuthClientsHttpResponse>

    getOAuthClients(
    {
    filter: "appType eq \"spa\" and clientId eq \"b3ee66d6f21d1611efa89a425f656f6f\"",
    totalResults: true
    }
    )

    GetOAuthClientsHttpError