OAuth Clients
Register OAuth client
Register a new OAuth client for third-party application integration.
The generated client_id and client_secret are returned in the response. The secret is shown only once — store it securely.
post/admin/oauth-clients
Request body
Example request
{
"description": "My application production deployment",
"name": "my-app-production",
"redirect_uris": [
"https://app.example.com/auth/callback"
],
"require_consent": true
}Response
Successful Response
Example response
{
"active": true,
"approval_status": "approved",
"client_id": "oc_abc123...",
"consent_model": "user",
"created_at": "2026-08-18T12:00:00Z",
"created_by": "usr_abc123",
"description": "My application production deployment",
"id": "oac_2NxYz...",
"name": "my-app-production",
"redirect_uris": [
"https://app.example.com/auth/callback"
],
"registration_source": "admin",
"require_consent": true,
"token_endpoint_auth_method": "client_secret_basic"
}