Path: / admin / realms / {realm} / oauth-clients

Get a list of oauth clients in this realm.

Path parameters:
realm - realm name (not id!)

Sub-Resources
Resources
NameDescription
{clientId}Get a representation of the oauth client

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/oauth-clientsGet a list of oauth clients in this realm.
POST /admin/realms/{realm}/oauth-clientsCreate an oauth client

Method Detail

GET /admin/realms/{realm}/oauth-clients

Get a list of oauth clients in this realm.

HTTP Example:
GET /admin/realms/{realm}/oauth-clients
API Example:

OAuthClientsResource.getOAuthClients({'realm': /* name realm name (not id!) */});

Output:
List<OAuthClientRepresentation> -
Produces:
application/json

POST /admin/realms/{realm}/oauth-clients

Create an oauth client

HTTP Example:
POST /admin/realms/{realm}/oauth-clients
API Example:

OAuthClientsResource.createOAuthClient({'realm': /* name realm name (not id!) */,
  '$entity': /* rep */});

Input:
OAuthClientRepresentation
Output:
Response -
Consumes:
application/json