OAuth Clients
Deny OAuth client
Deny an OAuth client — sets approval_status=denied and active=false.
The row is retained so a later approve can reverse the decision.
post/admin/oauth-clients/{id}:deny
Path parameters
idstring required
Request body
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"
}Changes
Changed in 2 of the 95 revisions of this API.2
- ○
added the optional property
to the response with the statusresponse-optional-property-added
- ○
- ○
endpoint added
endpoint-added
- ○