You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creates a new request to get the user information associated to a given access token. This will only work if the token has been granted the `openid` scope.
74
+
Creates a request to get the user information associated to a given access token. This will only work if the token has been granted the `openid` scope.
### Exchange the Authorization Code - /oauth/token
133
133
134
-
Creates a new request to exchange the `code` previously obtained by calling the /authorize endpoint. The redirect uri must be the one sent in the /authorize call.
134
+
Creates a request to exchange the `code` previously obtained by calling the /authorize endpoint. The redirect uri must be the one sent in the /authorize call.
Creates a new request to log in the user with `username` and `password`. The connection used is the one defined as "Default Directory" in the account settings.
154
+
Creates a request to log in the user with `username` and `password`. The connection used is the one defined as "Default Directory" in the account settings.
The implementation is based on the [Management API Docs](https://auth0.com/docs/api/management/v2).
233
251
234
-
Create a new `ManagementAPI` instance by providing the domain from the [client dashboard](https://manage.auth0.com/#/clients) and the API Token. Click [here](https://auth0.com/docs/api/management/v2#!/Introduction/Getting_an_API_token) for more information on how to obtain a valid API Token.
252
+
Create a `ManagementAPI` instance by providing the domain from the [client dashboard](https://manage.auth0.com/#/clients) and the API Token. Click [here](https://auth0.com/docs/api/management/v2#!/Introduction/Getting_an_API_token) for more information on how to obtain a valid API Token.
@@ -259,7 +277,7 @@ The Management API is divided into different entities. Each of them have the lis
259
277
260
278
#### List
261
279
262
-
Creates a new request to list the Users. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
280
+
Creates a request to list the Users. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
263
281
You can pass an optional Filter to narrow the results in the response.
264
282
265
283
`Request<UsersPage> list(UserFilter filter)`
@@ -279,7 +297,7 @@ try {
279
297
280
298
#### Get
281
299
282
-
Creates a new request to get a User. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
300
+
Creates a request to get a User. An API Token with scope `read:users` is needed. If you want the identities.access_token property to be included, you will also need the scope `read:user_idp_tokens`.
283
301
You can pass an optional Filter to narrow the results in the response.
Creates a new request to create a new User. An API Token with scope `create:users` is needed.
320
+
Creates a request to create a User. An API Token with scope `create:users` is needed.
303
321
304
322
`Request<User> create(User user)`
305
323
@@ -318,7 +336,7 @@ try {
318
336
319
337
#### Delete
320
338
321
-
Creates a new request to delete a User. An API Token with scope `delete:users` is needed.
339
+
Creates a request to delete a User. An API Token with scope `delete:users` is needed.
322
340
323
341
`Request delete(String userId)`
324
342
@@ -336,7 +354,7 @@ try {
336
354
337
355
#### Update
338
356
339
-
Creates a new request to update a User. An API Token with scope `update:users` is needed. If you're updating app_metadata you'll also need `update:users_app_metadata` scope.
357
+
Creates a request to update a User. An API Token with scope `update:users` is needed. If you're updating app_metadata you'll also need `update:users_app_metadata` scope.
340
358
341
359
`Request<User> update(String userId, User user)`
342
360
@@ -355,7 +373,7 @@ try {
355
373
356
374
#### Get Guardian Enrollments
357
375
358
-
Creates a new request to list the User's Guardian Enrollments. An API Token with scope `read:users` is needed.
376
+
Creates a request to list the User's Guardian Enrollments. An API Token with scope `read:users` is needed.
0 commit comments