Skip to main content
GET
/
v3
/
oauth
/
.well-known
/
oauth-authorization-server
Get OAuth authorization server metadata
curl --request GET \
  --url https://api.scalev.com/v3/oauth/.well-known/oauth-authorization-server
{
  "issuer": "https://api.scalev.com/v3/oauth",
  "authorization_endpoint": "https://app.scalev.com/oauth/authorize",
  "token_endpoint": "https://api.scalev.com/v3/oauth/token",
  "registration_endpoint": "https://api.scalev.com/v3/oauth/register",
  "response_types_supported": [
    "code"
  ],
  "grant_types_supported": [
    "authorization_code",
    "refresh_token"
  ],
  "token_endpoint_auth_methods_supported": [],
  "code_challenge_methods_supported": [
    "S256"
  ],
  "client_id_metadata_document_supported": true,
  "scopes_supported": [
    "<string>"
  ],
  "introspection_endpoint": "https://api.scalev.com/v3/oauth/introspect",
  "revocation_endpoint": "https://api.scalev.com/v3/oauth/revoke"
}

Response

OAuth authorization server metadata

issuer
string<uri>
required
Example:

"https://api.scalev.com/v3/oauth"

authorization_endpoint
string<uri>
required
Example:

"https://app.scalev.com/oauth/authorize"

token_endpoint
string<uri>
required
Example:

"https://api.scalev.com/v3/oauth/token"

registration_endpoint
string<uri>
required
Example:

"https://api.scalev.com/v3/oauth/register"

response_types_supported
string[]
required
Example:
["code"]
grant_types_supported
string[]
required
Example:
["authorization_code", "refresh_token"]
token_endpoint_auth_methods_supported
enum<string>[]
required
Available options:
client_secret_post,
client_secret_basic,
none,
private_key_jwt
code_challenge_methods_supported
string[]
required
Example:
["S256"]
client_id_metadata_document_supported
boolean
required
Example:

true

scopes_supported
string[]
required
introspection_endpoint
string<uri>
Example:

"https://api.scalev.com/v3/oauth/introspect"

revocation_endpoint
string<uri>
Example:

"https://api.scalev.com/v3/oauth/revoke"