We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19121df + a519c94 commit 15950aaCopy full SHA for 15950aa
1 file changed
src/main/java/com/auth0/client/mgmt/ClientsEntity.java
@@ -30,7 +30,10 @@ public class ClientsEntity extends BaseManagementEntity {
30
* See https://auth0.com/docs/api/management/v2#!/Clients/get_clients
31
*
32
* @return a Request to execute.
33
+ * @deprecated Calling this method will soon stop returning the complete list of clients and instead, limit to the first page of results.
34
+ * Please use {@link #list(ClientFilter)} instead as it provides pagination support.
35
*/
36
+ @Deprecated
37
public Request<List<Client>> list() {
38
String url = baseUrl
39
.newBuilder()
0 commit comments