OAuth Clients
Approve OAuth client
Approve an OAuth client — sets approval_status=approved and active=true.
Also re-approves a previously denied client (deny is reversible; rows are never deleted, so the client's cached client_id becomes valid again).
post/admin/oauth-clients/{id}:approve
Path parameters
idstring required
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
- ○