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

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-clients-by-idGet a list of oauth clients in this realm.
POST /admin/realms/{realm}/oauth-clients-by-idCreate an oauth client

Method Detail

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

Get a list of oauth clients in this realm.

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

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

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

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

Create an oauth client

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

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

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