Return client

get/oauth/clients/{clientId}
Internal-Use Only

Returns the client that is specified in the request. Authorization: Bearer token with clients.read, clients.admin, zones.{zoneId}.admin, or equivalent (SASAdministrators) scope.

Request Samples

1

Response Samples

1{
2 "scope": [
3 "openid",
4 "uaa.user"
5 ],
6 "client_id": "app",
7 "resource_ids": [
8 "none"
9 ],
10 "authorized_grant_types": [
11 "authorization_code"
12 ],
13 "redirect_uri": [
14 "http://example.com/app"
15 ],
16 "autoapprove": [
17 "true"
18 ],
19 "authorities": [
20 "uaa.none"
21 ],
22 "name": "My custom application",
23 "lastModified": 1548439765963
24}

Path Parameters

NameTypeRequiredDescription
clientId
string
true

The ID of the requested client.

Responses

StatusMeaningDescription
200OKThe request succeeded.HeadersSchema
404Not FoundNo client exists at the requested path.