# OAuth discovery document Retrieves OAuth 2.0 discovery document with authorization server configuration. Endpoint: GET /auth/oauth-discovery Version: 1.0.3 Security: ## Response 200 fields (application/json): - `issuer` (string) The issuer URL of the authorization server Example: "https://reachreporting.com" - `authorization_endpoint` (string) The URL of the authorization endpoint Example: "https://reachreporting.com/oauth2/authorize" - `token_endpoint` (string) The URL of the token endpoint Example: "https://reachreporting.com/oauth2/token" - `grant_types_supported` (array) The OAuth 2.0 grant types supported by the authorization server Example: ["authorization_code","refresh_token"] - `response_types_supported` (array) The response types supported by the authorization server Example: ["code"] - `scopes_supported` (array) The OAuth 2.0 scopes supported by the authorization server Example: ["openid","profile","email","phone","read:company"] - `token_endpoint_auth_methods_supported` (array) The client authentication methods supported by the token endpoint Example: ["client_secret_post"]