- Get authorization server metadata
Issue an access token
Revoke a token
Register an OAuth client (DCR)
List the resources the current token can access
Get authorization server...
Machine-readable OAuth 2.0 authorization server metadata (RFC 8414): endpoint URLs, supported grant types, PKCE methods, and scopes. Agents and MCP hosts use this document to discover the authorization and token endpoints automatically.
- Mock serverhttps://developer.alteg.io/_mock/en/b2b-v3/openapi/.well-known/oauth-authorization-server
- Preview authorization server - endpoint surface is not live yethttps://api.alteg.io/.well-known/oauth-authorization-server
curl -i -X GET \
https://developer.alteg.io/_mock/en/b2b-v3/openapi/.well-known/oauth-authorization-serverResponse
{ "issuer": "https://api.alteg.io", "authorization_endpoint": "https://api.alteg.io/oauth/authorize", "token_endpoint": "https://api.alteg.io/oauth/token", "revocation_endpoint": "https://api.alteg.io/oauth/revoke", "registration_endpoint": "https://api.alteg.io/oauth/register", "response_types_supported": [ "code" ], "grant_types_supported": [ "authorization_code", "client_credentials", "refresh_token" ], "code_challenge_methods_supported": [ "S256" ], "token_endpoint_auth_methods_supported": [ "client_secret_basic", "none" ], "scopes_supported": [ "locations:read", "locations:write", "locations:create", "services:read", "services:write", "products:read", "team_members:read", "team_members:write", "team_members:manage_access", "clients:read", "clients:read_contact", "clients:write", "availability:read", "appointments:read", "appointments:create", "appointments:write", "visits:read", "visits:write", "payments:read", "payments:capture", "payments:refund", "finance:read", "loyalty:read", "chain_services:read", "chain_services:write", "chain_clients:read", "chain_loyalty:read" ] }