Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions EXAMPLES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1929,12 +1929,9 @@ val manager = CredentialsManager(apiClient, storage)

## My Account API

> [!NOTE]
> The My Account API is currently available in [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access). Please reach out to Auth0 support to get it enabled for your tenant.

Use the Auth0 My Account API to manage the current user's account.

To call the My Account API, you need an access token issued specifically for this API, including any required scopes for the operations you want to perform. See [API credentials [EA]](#api-credentials-ea) to learn how to obtain one.
To call the My Account API, you need an access token issued specifically for this API, including any required scopes for the operations you want to perform. See [API credentials](#api-credentials) to learn how to obtain one.

```kotlin
val client = MyAccountAPIClient(auth0, accessToken)
Expand Down Expand Up @@ -2809,10 +2806,7 @@ val isValid = secureCredentialsManager.isBiometricSessionValid()

### Other Credentials

#### API credentials [EA]

> [!NOTE]
> This feature is currently available in [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access). Please reach out to Auth0 support to get it enabled for your tenant.
#### API credentials

When the user logs in, you can request an access token for a specific API by passing its API identifier as the [audience](#specify-audience) value. The access token in the resulting credentials can then be used to make authenticated requests to that API.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
* You can specify an optional user identity identifier and an optional database connection name.
* If a connection name is not specified, your tenant's default directory will be used.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
* ## Scopes Required
*
* `create:me:authentication_methods`
Expand Down Expand Up @@ -205,12 +199,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
/**
* Enrolls a new passkey credential. This is the last part of the enrollment flow.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
* ## Scopes Required
*
* `create:me:authentication_methods`
Expand Down Expand Up @@ -277,12 +265,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
/**
* Retrieves a detailed list of authentication methods belonging to the user.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
* ## Scopes Required
*
* `read:me:authentication_methods`
Expand Down Expand Up @@ -346,13 +328,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
/**
* Retrieves a single authentication method belonging to the user.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
*
* ## Usage
*
* ```kotlin
Expand Down Expand Up @@ -387,13 +362,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
/**
* Updates a single authentication method belonging to the user.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
*
* ## Usage
*
* ```kotlin
Expand Down Expand Up @@ -448,12 +416,6 @@ public class MyAccountAPIClient @VisibleForTesting(otherwise = VisibleForTesting
/**
* Deletes an existing authentication method belonging to the user.
*
* ## Availability
*
* This feature is currently available in
* [Early Access](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access).
* Please reach out to Auth0 support to get it enabled for your tenant.
*
* ## Scopes Required
* `delete:me:authentication_methods`
*
Expand Down
Loading