Path: / admin / realms / {realm} / applications

List of applications belonging to this realm.

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

Sub-Resources
Resources
NameDescription
{app-name}Get representation of the application.

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/applicationsList of applications belonging to this realm.
POST /admin/realms/{realm}/applicationsCreate a new application.

Method Detail

GET /admin/realms/{realm}/applications

List of applications belonging to this realm.

HTTP Example:
GET /admin/realms/{realm}/applications
API Example:

ApplicationsResource.getApplications({'realm': /* name realm name (not id!) */});

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

POST /admin/realms/{realm}/applications

Create a new application. Application name must be unique!

HTTP Example:
POST /admin/realms/{realm}/applications
API Example:

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

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