OAuth Authorization Server Metadata
curl --request GET \
--url https://api.headlesscommerce.io/v1/.well-known/oauth-authorization-server{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"scopes_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"service_documentation": "<string>"
}OAuth 2.1
OAuth Authorization Server Metadata
Returns OAuth 2.0 Authorization Server Metadata per RFC 8414.
Includes all supported endpoints, scopes, grant types, and PKCE methods.
GET
/
.well-known
/
oauth-authorization-server
OAuth Authorization Server Metadata
curl --request GET \
--url https://api.headlesscommerce.io/v1/.well-known/oauth-authorization-server{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"scopes_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"service_documentation": "<string>"
}Response
200 - application/json
Server metadata
⌘I