OAuth 2.0
OAuth 2.0 Authorization Server Metadata
get
/.well-known/oauth-authorization-serverReturns the OAuth 2.0 Authorization Server Metadata document (RFC 8414). Clients use this endpoint to discover authorization server capabilities and endpoint locations.
bash
Sample request1curl --request GET 'https://api.eu-west-1.aws.dash0.com/.well-known/oauth-authorization-server'
Responses
Authorization server metadata document.
References OAuthAuthorizationServerMetadata
stringrequired
The authorization server's issuer identifier (URL).
stringrequired
URL of the authorization endpoint.
stringrequired
URL of the token endpoint.
string
URL of the dynamic client registration endpoint.
string
URL of the token revocation endpoint.
string
URL of the token introspection endpoint.
string[]
List of scopes supported by the authorization server.
OAuthResponseType[]required
List of supported response types.
OAuthGrantType[]
List of supported grant types.
OAuthCodeChallengeMethod[]
List of supported PKCE code challenge methods.
OAuthTokenEndpointAuthMethod[]
List of supported token endpoint authentication methods.
string
URL of the UserInfo endpoint (OIDC Core § 5.3).