Skip to content
Open
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
3 changes: 1 addition & 2 deletions main/config/navigation/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -834,8 +834,7 @@
"pages": [
"docs/authenticate/database-connections/passkeys/configure-passkey-policy",
"docs/authenticate/database-connections/passkeys/monitor-passkey-events-in-tenant-logs",
"docs/authenticate/database-connections/passkeys/native-passkeys-for-mobile-applications",
"docs/authenticate/database-connections/passkeys/native-passkeys-api"
"docs/authenticate/database-connections/passkeys/passkey-apis"
]
},
"docs/authenticate/database-connections/password-options",
Expand Down
4 changes: 2 additions & 2 deletions main/config/redirects.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@
},
{
"source": "/docs/native-passkeys-api",
"destination": "/docs/authenticate/database-connections/passkeys/native-passkeys-api"
"destination": "/docs/authenticate/database-connections/passkeys/passkey-apis"
},
{
"source": "/docs/native-passkeys-for-mobile-applications",
"destination": "/docs/authenticate/database-connections/passkeys/native-passkeys-for-mobile-applications"
"destination": "/docs/authenticate/database-connections/passkeys/passkey-apis"
},
{
"source": "/docs/articles",
Expand Down
13 changes: 1 addition & 12 deletions main/docs/api/myaccount.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@ description: "Documentation for Auth0's My Account API"

<Badge>Version: 1.0 (Current)</Badge>

<Warning>
<p class="uppercase font-bold">Limited Early Access</p>

The My Account API is available in Limited Early Access. To request access, contact your Auth0 account manager. To learn more about Auth0's product release cycle, read [Product Release Stages](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages).

</Warning>

The Auth0 My Account API provides a dedicated set of endpoints for users to manage their own account information. Customers can use these APIs to build self-service experiences in their applications or progressively add details to a user account.

The My Account API operates within the context of the currently logged-in user and can be used directly within user-facing applications.
Expand Down Expand Up @@ -79,7 +72,7 @@ If you're using Universal Login, read the following articles:
If you're using embedded login, read the following articles:

- [Call Your API Using Resource Owner Password Flow](https://auth0.com/docs/get-started/authentication-and-authorization-flow/resource-owner-password-flow/call-your-api-using-resource-owner-password-flow)
- [Login Flow with Native Passkeys API](https://auth0.com/docs/native-passkeys-api#login-flow)
- [Login Flow with Passkey APIs](https://auth0.com/docs/authenticate/database-connections/passkeys/passkey-apis#login-flow)

## Examples

Expand Down Expand Up @@ -121,10 +114,6 @@ curl --request POST \
--data '{ "grant_type": "urn:okta:params:oauth:grant-type:webauthn", "client_id": "{yourClientId}", "scope": "create:me:authentication_methods offline_access", "audience": "https://{yourDomain}/me/" "auth_session": "{sessionIdFromTheFirstRequest}", "authn_response": "{authenticatorResponse}"}'
```

## Rate limits

During Early Access, the My Account API is limited at a tenant level to 25 requests per second.

### Authentication

<Tabs class="width-1/2" borderBottom>
Expand Down
2 changes: 1 addition & 1 deletion main/docs/authenticate/database-connections/passkeys.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Auth0 supports passkeys as an authentication method for database connections wit

* Universal Login passkeys for web-based applications
* [Embedded Login native applications](/docs/authenticate/passwordless/implement-login/embedded-login/native)
* [Native passkeys for Android and iOS applications](/docs/authenticate/database-connections/passkeys/native-passkeys-for-mobile-applications)
* [Passkey APIs for native mobile and web applications](/docs/authenticate/database-connections/passkeys/passkey-apis)

Auth0 has a limit of 20 passkeys per user.

Expand Down
Loading