For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get an OAuth2/OpenID client application

Non-admin users receive a reduced representation without the client secret.

get
Authorizations
defguard_sessionstringRequired
Path parameters
client_idstringRequired

ID of the OAuth2 client.

Responses
200

OAuth2 client details.

application/json
objectOptional
get/api/v1/oauth/{client_id}
GET /api/v1/oauth/{client_id} HTTP/1.1
Accept: */*
{
  "client_id": "Kx7mQ2pR9tLvB4nZ",
  "client_secret": "wY3hJ8sD1fG6kL0aP5vN2cX7bM4qR9tZ",
  "enabled": true,
  "id": 1,
  "name": "internal app",
  "redirect_uri": [
    "https://app.example.com/callback"
  ],
  "scope": [
    "openid",
    "profile",
    "email"
  ]
}

Last updated

Was this helpful?