Autional Autional
API Reference GitHub autional.com →

GET /oauth/register/{client_id}

OAuth 2.0 dynamic client registration read endpoint. Uses Registration Access Token to read current client metadata. Reference: RFC 7591 §3 (Client Read Request).

OAuth None application/json

Request Parameters

NameInTypeRequiredDefaultExampleConstraintsDescription
client_id path string Yes Client ID
Authorization header string Yes Bearer <registration_access_token>

Responses

StatusDescriptionSchema
200Client metadatadto.ClientRegistrationDetailResponse
401invalid_token: missing or invalid Registration Access Token. Reference: RFC 7591 §3.2.dto.OAuthErrorResponse

Referenced Schemas

dto.ClientRegistrationDetailResponse

FieldTypeRequiredExampleConstraintsDescription
code integer No
data dto.ClientRegistrationResponse No
message string No
timestamp string No

dto.ClientRegistrationResponse

OAuth 2.0 Dynamic Client Registration response (RFC 7591 §2.1)

FieldTypeRequiredExampleConstraintsDescription
application_type string No web Application type
client_id string No 01JNXXXXX... Client ID
client_id_issued_at integer No 1715692800 Client ID issued at
client_name string No My Application Client name
client_secret string No sec_abc123... Client secret
client_secret_expires_at integer No 0 Client secret expiration time (0 = never expires)
client_uri string No https://app.example.com Client home page URL
contacts array of

string

No ['["admin@example.com"]'] Contacts
grant_types array of

string

No ['["authorization_code"', '"refresh_token"]'] Grant types
logo_uri string No https://app.example.com/logo.png Logo URL
policy_uri string No https://app.example.com/privacy Privacy policy URL
redirect_uris array of

string

No ['["https://app.example.com/callback"]'] Redirect URIs
registration_access_token string No reg_abc123... Registration access token
registration_client_uri string No https://authms.example.com/api/v1/oauth/register/app-123 Registration management URI
scope string No openid profile email Scopes
token_endpoint_auth_method string No client_secret_basic Authentication method
tos_uri string No https://app.example.com/tos Terms of service URL

dto.OAuthErrorResponse

OAuth standard error response

FieldTypeRequiredExampleConstraintsDescription
error string No invalid_request Error code
error_description string No Missing required parameter Error description
error_uri string No https://docs.example.com/errors Error URI
state string No state-123 Status