Authentication
Initiate OAuth login flow
Generates OAuth URL for authentication with external providers (Auth0)
get/accounts/oauth/login
Query parameters
accountstring required
Account identifier for the login request
connectionstring
OAuth connection type (e.g., github, google-oauth2)
Headers
Refererstring required
Referer URL
Response
OAuth URL generated successfully
Example response
{
"data": {
"oauth_url": "https://domain.auth0.com/authorize?client_id=...&response_type=code&redirect_uri=...&state=..."
}
}